ddbc.drivers.sqliteddbc

DDBC - D DataBase Connector - abstraction layer for RDBMS access, with interface similar to JDBC.

Source file ddbc/drivers/pgsqlddbc.d.

DDBC library attempts to provide implementation independent interface to different databases.

Set of supported RDBMSs can be extended by writing Drivers for particular DBs.

JDBC documentation can be found here: http://docs.oracle.com/javase/1.5.0/docs/api/java/sql/package-summary.html

This module contains implementation of SQLite Driver

You can find usage examples in unittest{} sections.

Members

Aliases

enforceHelper
alias enforceHelper = enforceEx
Undocumented in source.
enforceHelper
alias enforceHelper = enforce
Undocumented in source.

Classes

SQLITEConnection
class SQLITEConnection
Undocumented in source.
SQLITEDriver
class SQLITEDriver
Undocumented in source.
SQLITEPreparedStatement
class SQLITEPreparedStatement
Undocumented in source.
SQLITEResultSet
class SQLITEResultSet
Undocumented in source.
SQLITEStatement
class SQLITEStatement
Undocumented in source.

Functions

createUnitTestSQLITEDataSource
DataSource createUnitTestSQLITEDataSource()

use this data source for tests

Variables

SQLITE_TESTS_ENABLED
bool SQLITE_TESTS_ENABLED;

change to false to disable tests on real PostgreSQL server

SQLITE_TESTS_ENABLED
bool SQLITE_TESTS_ENABLED;
Undocumented in source.
SQLITE_UNITTEST_URL
string SQLITE_UNITTEST_URL;

change parameters if necessary

Meta

Authors

Vadim Lopatin