Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
| Download
Sage Reference Manual
Project: SageManifolds
Views: 717157Databases1=========23There are numerous specific mathematical databases either included4in Sage or available as optional packages. Also, Sage includes two5powerful general database packages.67Sage includes the ZOPE object oriented database ZODB, which8"is a Python object persistence system. It provides transparent object-oriented persistency."910Sage also includes the powerful relational database SQLite, along11with a Python interface to SQLite. SQlite is a small C library that12implements a self-contained, embeddable, zero-configuration SQL13database engine.141516- Transactions are atomic, consistent, isolated, and durable17(ACID) even after system crashes and power failures.1819- Zero-configuration - no setup or administration needed.2021- Implements most of SQL92. (Features not supported)2223- A complete database is stored in a single disk file.2425- Database files can be freely shared between machines with26different byte orders.2728- Supports databases up to 2 tebibytes (2^41 bytes) in size.2930- Strings and BLOBs up to 2 gibibytes (2^31 bytes) in size.3132- Small code footprint: less than 250KiB fully configured or less33than 150KiB with optional features omitted.3435- Faster than popular client/server database engines for most36common operations.3738- Simple, easy to use API.3940- TCL bindings included. Bindings for many other languages41available separately.4243- Well-commented source code with over 95% test coverage.4445- Self-contained: no external dependencies.4647- Sources are in the public domain. Use for any purpose.4849.. toctree::50:maxdepth: 15152sage/databases/cremona53sage/databases/stein_watkins54sage/databases/jones55sage/databases/oeis56sage/databases/sloane57sage/databases/conway58sage/databases/odlyzko59sage/databases/symbolic_data60sage/databases/cunningham_tables61sage/databases/db_class_polynomials62sage/databases/db_modular_polynomials6364.. include:: ../footer.txt656667