|
From: <dav...@us...> - 2009-08-25 19:58:29
|
Revision: 862
http://instantobjects.svn.sourceforge.net/instantobjects/revision/?rev=862&view=rev
Author: davidvtaylor
Date: 2009-08-25 19:58:23 +0000 (Tue, 25 Aug 2009)
Log Message:
-----------
Update ZeosDBO broker to fix breakage caused by new Enum type support
Modified Paths:
--------------
trunk/Source/Brokers/ZeosDBO/InstantZeosDBO.pas
Modified: trunk/Source/Brokers/ZeosDBO/InstantZeosDBO.pas
===================================================================
--- trunk/Source/Brokers/ZeosDBO/InstantZeosDBO.pas 2009-08-25 19:49:09 UTC (rev 861)
+++ trunk/Source/Brokers/ZeosDBO/InstantZeosDBO.pas 2009-08-25 19:58:23 UTC (rev 862)
@@ -911,7 +911,8 @@
'DATETIME',
'IMAGE',
'DATETIME',
- 'DATETIME');
+ 'DATETIME',
+ 'INTEGER');
begin
Result := Types[DataType];
end;
@@ -938,7 +939,8 @@
'DATETIME',
'IMAGE',
'DATETIME',
- 'DATETIME');
+ 'DATETIME',
+ 'INTEGER');
begin
Result := Types[DataType];
end;
@@ -990,7 +992,8 @@
'TIMESTAMP',
'BLOB',
'TIMESTAMP',
- 'TIMESTAMP');
+ 'TIMESTAMP',
+ 'INTEGER');
begin
Result := Types[DataType];
end;
@@ -1022,7 +1025,8 @@
'DATE',
'BLOB',
'DATE',
- 'DATE');
+ 'DATE',
+ 'INTEGER');
begin
Result := Types[DataType];
end;
@@ -1049,7 +1053,8 @@
'TIMESTAMP',
'BYTEA',
'TIMESTAMP',
- 'TIMESTAMP');
+ 'TIMESTAMP',
+ 'INTEGER');
begin
Result := Types[DataType];
end;
@@ -1119,7 +1124,8 @@
'DATETIME',
'BLOB',
'DATE',
- 'TIME');
+ 'TIME',
+ 'INTEGER');
begin
Result := Types[DataType];
end;
@@ -1358,7 +1364,8 @@
'TIMESTAMP',
'BLOB',
'TIMESTAMP',
- 'TIMESTAMP');
+ 'TIMESTAMP',
+ 'INTEGER');
begin
Result := Types[DataType];
end;
|