Changeset 1737
- Timestamp:
- 2008-05-17 04:05:31 (4 months ago)
- Location:
- trunk/htdocs/system
- Files:
-
- 2 modified
- 5 copied
-
classes/databaseconnection.php (modified) (2 diffs)
-
classes/version.php (modified) (1 diff)
-
schema/pgsql (copied) (copied from branches/postgres/htdocs/system/schema/pgsql)
-
schema/pgsql/config.php (copied) (copied from branches/postgres/htdocs/system/schema/pgsql/config.php)
-
schema/pgsql/connection.php (copied) (copied from branches/postgres/htdocs/system/schema/pgsql/connection.php)
-
schema/pgsql/schema.sql (copied) (copied from branches/postgres/htdocs/system/schema/pgsql/schema.sql)
-
schema/pgsql/upgrades (copied) (copied from branches/postgres/htdocs/system/schema/pgsql/upgrades)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/classes/databaseconnection.php
r1727 r1737 295 295 switch ( $driver ) { 296 296 case 'mysql': 297 case 'pgsql': 297 298 case 'db2': 298 299 /* … … 307 308 $query.= ' )'; 308 309 break; 309 case 'pgsql':310 310 case 'oracle': 311 311 die( sprinf(_t('not yet supported on %s'), $driver) ); -
trunk/htdocs/system/classes/version.php
r1734 r1737 12 12 // DB and API versions are aligned with the SVN revision 13 13 // number in which they last changed. 14 const DB_VERSION = 15 35;14 const DB_VERSION = 1540; 15 15 const API_VERSION = 1366; 16 16
