Ask Your Question

William Laffin's profile - activity

2019-03-01 11:28:41 +0200 received badge  Famous Question (source)
2019-03-01 11:28:41 +0200 received badge  Notable Question (source)
2018-01-21 05:09:44 +0200 received badge  Taxonomist
2012-12-20 09:28:17 +0200 received badge  Popular Question (source)
2010-10-14 23:11:12 +0200 received badge  Teacher (source)
2010-10-14 23:11:11 +0200 received badge  Scholar (source)
2010-10-14 23:11:11 +0200 received badge  Student (source)
2010-08-20 19:02:30 +0200 marked best answer Database Schemas?
  • The elliptic curves database is not a SQL database, so it doesn't have a "schema" as such -- it's just a bunch of Python objects.

  • for any database that is a sqlite3 database, you could just use sqlite3 (the command line tool) to output the schema for the database (by doing sage -sh then sqlite3 databasefile). You'll have to find the database file in the SAGE_ROOT/data/ directory.

    sage -sh
    cd $SAGE_ROOT/data/graphs/
    sqlite3 graphs.db
    sqlite> select * from sqlite_master;
    table|degrees|degrees|2|CREATE TABLE degrees(
    ...
    
2010-08-20 18:04:37 +0200 asked a question Database Schemas?

There are a number of databases in sage, for curves or graphs or what have you. Where can I find the schemas for these?

2010-08-19 14:40:29 +0200 commented answer What are the 10 most often used functions in Sage?

er, I can't edit that comment, but there are supposed to be two underscores around init XP

2010-08-19 13:35:55 +0200 answered a question What are the 10 most often used functions in Sage?
print
__init__
cached_function