1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-30 17:29:53 +02:00

* new MS SQL driver

* removed constant DIBI
This commit is contained in:
David Grudl
2007-05-13 18:32:03 +00:00
parent f766827219
commit 7452065de0
15 changed files with 281 additions and 19 deletions

View File

@@ -12,7 +12,7 @@
* @license GNU GENERAL PUBLIC LICENSE version 2
* @package dibi
* @category Database
* @version 0.8b (Revision: $WCREV$, Date: $WCDATE$)
* @version 0.8c (Revision: $WCREV$, Date: $WCDATE$)
*/
@@ -26,9 +26,6 @@
*/
define('DIBI', '0.8b (Revision: $WCREV$, Date: $WCDATE$)');
if (version_compare(PHP_VERSION , '5.0.3', '<'))
die('dibi needs PHP 5.0.3 or newer');
@@ -85,7 +82,10 @@ class dibi
FIELD_UNKNOWN = '?',
// special
FIELD_COUNTER = 'c'; // counter or autoincrement, is integer
FIELD_COUNTER = 'c', // counter or autoincrement, is integer
// dibi version
VERSION = '0.8c (Revision: $WCREV$, Date: $WCDATE$)';
/**