110 |
|
|
111 |
|
published |
112 |
|
property Active; |
113 |
+ |
property AutoCommit; |
114 |
|
property BufferChunks; |
115 |
|
property CachedUpdates; |
116 |
|
property DataSource read GetDataSource write SetDataSource; |
416 |
|
end; |
417 |
|
ftString: |
418 |
|
SQLParam.AsString := Params[i].AsString; |
419 |
< |
ftBoolean, ftSmallint, ftWord: |
419 |
> |
ftBoolean: |
420 |
> |
SQLParam.AsBoolean := Params[i].AsBoolean; |
421 |
> |
ftSmallint, ftWord: |
422 |
|
SQLParam.AsShort := Params[i].AsSmallInt; |
423 |
|
ftInteger: |
424 |
|
SQLParam.AsLong := Params[i].AsInteger; |
544 |
|
end; |
545 |
|
*) |
546 |
|
end. |
547 |
< |
|
547 |
> |
|