About 50 results
Open links in new tab
  1. Dialects — SQLAlchemy 1.4 Documentation

    Sep 5, 2024 · The dialect is the system SQLAlchemy uses to communicate with various types of DBAPI implementations and databases. The sections that follow contain reference documentation and notes …

  2. Microsoft SQL Server — SQLAlchemy 1.4 Documentation

    DBAPI Support ¶ The following dialect/DBAPI options are available. Please refer to individual DBAPI sections for connect information. PyODBC mxODBC pymssql External Dialects ¶ In addition to the …

  3. SQLite — SQLAlchemy 1.4 Documentation

    SQLAlchemy’s reflection process, when inspecting types, uses a simple lookup table to link the keywords returned to provided SQLAlchemy types. This lookup table is present within the SQLite …

  4. SQLAlchemy Documentation — SQLAlchemy 2.0 Documentation

    Apr 3, 2026 · The dialect is the system SQLAlchemy uses to communicate with various types of DBAPIs and databases. This section describes notes, options, and usage patterns regarding individual dialects.

  5. MySQL and MariaDB — SQLAlchemy 2.0 Documentation

    Apr 3, 2026 · The CyMySQL dialect is not tested as part of SQLAlchemy’s continuous integration and may have unresolved issues. The recommended MySQL dialects are mysqlclient and PyMySQL.

  6. PostgreSQL — SQLAlchemy 1.3 Documentation

    The SQLAlchemy psycopg2 dialect will enable this extension by default when psycopg2 version 2.4 or greater is used, and it is detected that the target database has the HSTORE type set up for use.

  7. Oracle — SQLAlchemy 2.0 Documentation

    Apr 3, 2026 · In order to achieve cross-database parity for the two cases of a. table reflection and b. textual-only SQL statement round trips, SQLAlchemy performs a step called name normalization …

  8. Engine Configuration — SQLAlchemy 2.0 Documentation

    Apr 3, 2026 · Engine Configuration ¶ The Engine is the starting point for any SQLAlchemy application. It’s “home base” for the actual database and its DBAPI, delivered to the SQLAlchemy application …

  9. Core Internals — SQLAlchemy 1.4 Documentation

    A dictionary of TypeEngine classes from sqlalchemy.types mapped to subclasses that are specific to the dialect class. This dictionary is class-level only and is not accessed from the dialect instance itself.

  10. Working with Engines and Connections - SQLAlchemy

    If the dialect is providing support for a particular DBAPI on top of an existing SQLAlchemy-supported database, the name can be given including a database-qualification. For example, if FooDialect were …