ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/runtime/IBTable.pas
(Generate patch)

Comparing ibx/trunk/runtime/IBTable.pas (file contents):
Revision 22 by tony, Mon Jul 7 13:00:15 2014 UTC vs.
Revision 23 by tony, Fri Mar 13 10:26:52 2015 UTC

# Line 38 | Line 38 | unit IBTable;
38   interface
39  
40   uses SysUtils, Classes, DB, IB,  IBCustomDataSet,
41 <     IBHeader, IBSQL, IBUtils;
41 >     IBSQL, IBUtils;
42      
43   type
44  
# Line 147 | Line 147 | type
147      property TableNames: TStrings read GetTableNames;
148  
149    published
150 +    property AutoCommit;
151      property Active;
152      property BufferChunks;
153      property CachedUpdates;
# Line 713 | Line 714 | var
714              FieldList := FieldList +
715                QuoteIdentifier(DataBase.SQLDialect, Name) +
716                ' CHAR(' + IntToStr(Size) + ')'; {do not localize}
717 <          ftBoolean, ftSmallint, ftWord:
717 >          ftBoolean:
718 >            FieldList := FieldList +
719 >              QuoteIdentifier(DataBase.SQLDialect, Name) +
720 >              ' BOOLEAN'; {do not localize}
721 >          ftSmallint, ftWord:
722              FieldList := FieldList +
723                QuoteIdentifier(DataBase.SQLDialect, Name) +
724                ' SMALLINT'; {do not localize}
# Line 1465 | Line 1470 | begin
1470    end;
1471   end;
1472  
1473 < end.
1473 > end.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines