Skip to main content

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 not 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.

pip version Build Status Coverage Status API Docs Status

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

PyDAL-20230407.2.tar.gz (405.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

PyDAL-20230407.2-py2.py3-none-any.whl (243.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file PyDAL-20230407.2.tar.gz.

File metadata

  • Download URL: PyDAL-20230407.2.tar.gz
  • Upload date:
  • Size: 405.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for PyDAL-20230407.2.tar.gz
Algorithm Hash digest
SHA256 2677d12b3e5939b89ee950c5a6357cee057c3579aa69d18d33d2c74e3976819c
MD5 eb243e0c5e8f7f34ab95242af62b5c4b
BLAKE2b-256 32be05cc12598b83b2a070bb06be1d391a26ac19be9ca477d051156645f89502

See more details on using hashes here.

File details

Details for the file PyDAL-20230407.2-py2.py3-none-any.whl.

File metadata

  • Download URL: PyDAL-20230407.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 243.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for PyDAL-20230407.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d4ca57af8f6fe8e55cfb77aeb832a31b5fb6f47e6b04db05204320d9b5146c20
MD5 fe3731cb465df5e9f8fe50582c69bbdd
BLAKE2b-256 1a3b33d2e6d409f47ad8fd2c489cb84dfcac15245bbd918d6da2119c8862d701

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page