diff options
| author | Mark Newnham <mark@newnhams.com> | 2018-08-26 11:26:11 -0600 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2019-12-30 00:29:41 +0100 |
| commit | 245b8fa3e5744ef8a838dc0a511c4f6edcfdd5a0 (patch) | |
| tree | 30cce245efaa72ce6e65d3a6fa3647a996872ae2 /drivers/adodb-sqlite.inc.php | |
| parent | 248188451a329c9f1cec9c0a26206c7d57bb9784 (diff) | |
| download | adodb-245b8fa3e5744ef8a838dc0a511c4f6edcfdd5a0.tar.gz adodb-245b8fa3e5744ef8a838dc0a511c4f6edcfdd5a0.tar.bz2 adodb-245b8fa3e5744ef8a838dc0a511c4f6edcfdd5a0.zip | |
Provides Control of BLOB data dictionary feature
ADOdb automatically disallows setting of NOT NULL or DEFAULT values on
blob type fields. This was due to historic limitations on data types
that no longer exists.
This commit takes the work done in PR #118 by @obmsch and adds the
driver for SQLite.
Fixes #292
Diffstat (limited to 'drivers/adodb-sqlite.inc.php')
| -rw-r--r-- | drivers/adodb-sqlite.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/adodb-sqlite.inc.php b/drivers/adodb-sqlite.inc.php index 7d86a9ae..8c0426b3 100644 --- a/drivers/adodb-sqlite.inc.php +++ b/drivers/adodb-sqlite.inc.php @@ -22,6 +22,7 @@ if (!defined('ADODB_DIR')) die(); class ADODB_sqlite extends ADOConnection { var $databaseType = "sqlite"; + var $dataProvider = "sqlite"; var $replaceQuote = "''"; // string to use to replace quotes var $concat_operator='||'; var $_errorNo = 0; |
