|
@@ -117,7 +117,11 @@ begin
|
|
|
FieldtypeDefinitions[ftGraphic] := '';
|
|
|
FieldtypeDefinitions[ftCurrency] := 'MONEY';
|
|
|
end;
|
|
|
- if SQLDbType = INTERBASE then Fconnection := tIBConnection.Create(nil);
|
|
|
+ if SQLDbType = INTERBASE then
|
|
|
+ begin
|
|
|
+ Fconnection := tIBConnection.Create(nil);
|
|
|
+ FieldtypeDefinitions[ftLargeint] := 'BIGINT';
|
|
|
+ end;
|
|
|
if SQLDbType = ODBC then Fconnection := tODBCConnection.Create(nil);
|
|
|
if SQLDbType = ORACLE then Fconnection := TOracleConnection.Create(nil);
|
|
|
|