public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
Search Repo:
Added 'DT' data type as Postgres timestamp so we can install using 
Postgres. News is still broken, as Postgres doesn't support the 'limit 
x,y' syntax, requiring instead a 'limit y offset x' syntax.

git-svn-id: http://svn.cmsmadesimple.org/svn/cmsmadesimple/trunk@4046 
3d254a34-79dc-0310-9e5f-be208747d8a0
sjg (author)
Tue Jul 17 21:30:59 -0700 2007
commit  30f474e3d36216387d062a8ed819a969e0462e0f
tree    dc74efd3bf9a7e7aa055387f0e7a6a5fc0c3d2e1
parent  3557219b3aaf2e6ab7cdf50c25c5fa8d4aa3ef62
...
37
38
39
 
40
41
42
...
37
38
39
40
41
42
43
0
@@ -37,6 +37,7 @@ class ADODB2_postgres7 extends ADODB_DataDict {
0
       
0
     case 'D': return 'DATE';
0
     case 'T': return 'TIMESTAMP';
0
+ case 'DT': return 'TIMESTAMP';
0
     
0
     case 'L': return 'BOOLEAN';
0
     case 'I': return 'INTEGER';
...
37
38
39
 
40
41
42
...
37
38
39
40
41
42
43
0
@@ -37,6 +37,7 @@ class ADODB2_postgres8 extends ADODB_DataDict {
0
       
0
     case 'D': return 'DATE';
0
     case 'T': return 'TIMESTAMP';
0
+ case 'DT': return 'TIMESTAMP';
0
     
0
     case 'L': return 'BOOLEAN';
0
     case 'I': return 'INTEGER';

Comments

    No one has commented yet.