pyDAL is a Database Abstraction Layer. It generates queries for SQlite, PotsgreSQL, MySQL, and other backends. It was originally part of the web2py frameworks but it is now an independent project. Example: db.define_table("thing",Field("name")) and db.thing.insert(name="Pizza")
Project description
pyDAL
pyDAL is a pure Python Database Abstraction Layer.
It dynamically generates the SQL/noSQL in realtime using the specified dialect for the database backend, so that you do not have to write SQL code or learn different SQL dialects (the term SQL is used generically), and your code will be portable among different types of databases.
pyDAL comes from the original web2py's DAL, with the aim of being compatible with any Python program. pyDAL doesn't require web2py and can be used in any Python context.
Installation
You can install pyDAL using pip
:
pip install pyDAL
Usage and Documentation
Here is a quick example:
>>> from pydal import DAL, Field
>>> db = DAL('sqlite://storage.db')
>>> db.define_table('thing', Field('name'))
>>> db.thing.insert(name='Chair')
>>> query = db.thing.name.startswith('C')
>>> rows = db(query).select()
>>> print rows[0].name
Chair
>>> db.commit()
The complete documentation is available on http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer
What's in the box?
A little taste of pyDAL features:
- Transactions
- Aggregates
- Inner Joins
- Outer Joins
- Nested Selects
Which databases are supported?
pyDAL supports the following databases:
- SQLite
- MySQL
- PostgreSQL
- MSSQL
- FireBird
- Oracle
- DB2
- Ingres
- Sybase
- Informix
- Teradata
- Cubrid
- SAPDB
- IMAP
- MongoDB
License
pyDAL is released under the BSD-3c License. For further details, please check the LICENSE
file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pydal-20240529.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05fcbf5b24b12788b73175b254070071b117ec6ac2f003e7c14a2dfc1f71cada |
|
MD5 | 01fbec82de3ecd843430c462b94f2487 |
|
BLAKE2b-256 | 7631a0263a76d9e8fa57c331c7749f4b1b74bd00ce44e33ea5a29ab387cca90f |