74 |
|
procedure SetDataSet(ADataSet: TIBCustomDataSet); virtual; abstract; |
75 |
|
procedure Apply(UpdateKind: TUpdateKind; buff: PChar); virtual; abstract; |
76 |
|
function GetSQL(UpdateKind: TUpdateKind): TStrings; virtual; abstract; |
77 |
< |
procedure InternalSetParams(Query: TIBSQL; buff: PChar); |
77 |
> |
procedure InternalSetParams(Params: ISQLParams; buff: PChar); overload; |
78 |
> |
procedure InternalSetParams(Query: TIBSQL; buff: PChar); overload; |
79 |
|
property DataSet: TIBCustomDataSet read GetDataSet write SetDataSet; |
80 |
|
public |
81 |
|
constructor Create(AOwner: TComponent); override; |
436 |
|
procedure SetDatabase(Value: TIBDatabase); |
437 |
|
procedure SetDeleteSQL(Value: TStrings); |
438 |
|
procedure SetInsertSQL(Value: TStrings); |
439 |
< |
procedure SetInternalSQLParams(Qry: TIBSQL; Buffer: Pointer); |
439 |
> |
procedure SetInternalSQLParams(Params: ISQLParams; Buffer: Pointer); |
440 |
|
procedure SetRefreshSQL(Value: TStrings); |
441 |
|
procedure SetSelectSQL(Value: TStrings); |
442 |
|
procedure SetModifySQL(Value: TStrings); |
2203 |
|
FUpdateObject.Apply(ukDelete,Buff) |
2204 |
|
else |
2205 |
|
begin |
2206 |
< |
SetInternalSQLParams(FQDelete, Buff); |
2206 |
> |
SetInternalSQLParams(FQDelete.Params, Buff); |
2207 |
|
FQDelete.ExecQuery; |
2208 |
|
end; |
2209 |
|
with PRecordData(Buff)^ do |
2352 |
|
FUpdateObject.Apply(ukModify,Buff); |
2353 |
|
end |
2354 |
|
else begin |
2355 |
< |
SetInternalSQLParams(Qry, Buff); |
2355 |
> |
SetInternalSQLParams(Qry.Params, Buff); |
2356 |
|
Qry.ExecQuery; |
2357 |
|
end; |
2358 |
|
PRecordData(Buff)^.rdUpdateStatus := usUnmodified; |
2386 |
|
end |
2387 |
|
else |
2388 |
|
Qry := FQRefresh; |
2389 |
< |
SetInternalSQLParams(Qry, Buff); |
2389 |
> |
SetInternalSQLParams(Qry.Params, Buff); |
2390 |
|
Qry.ExecQuery; |
2391 |
|
try |
2392 |
|
if (Qry.SQLStatementType = SQLExecProcedure) or Qry.Next then |
2598 |
|
if (FBase.Database <> Value) then |
2599 |
|
begin |
2600 |
|
CheckDatasetClosed; |
2601 |
+ |
InternalUnPrepare; |
2602 |
|
FBase.Database := Value; |
2603 |
|
FQDelete.Database := Value; |
2604 |
|
FQInsert.Database := Value; |
2626 |
|
end; |
2627 |
|
end; |
2628 |
|
|
2629 |
< |
procedure TIBCustomDataSet.SetInternalSQLParams(Qry: TIBSQL; Buffer: Pointer); |
2629 |
> |
procedure TIBCustomDataSet.SetInternalSQLParams(Params: ISQLParams; Buffer: Pointer); |
2630 |
|
var |
2631 |
|
i, j: Integer; |
2632 |
|
cr, data: PChar; |
2642 |
|
InternalPrepare; |
2643 |
|
OldBuffer := nil; |
2644 |
|
try |
2645 |
< |
for i := 0 to Qry.Params.GetCount - 1 do |
2645 |
> |
for i := 0 to Params.GetCount - 1 do |
2646 |
|
begin |
2647 |
< |
Param := Qry.Params[i]; |
2647 |
> |
Param := Params[i]; |
2648 |
|
fn := Param.Name; |
2649 |
|
if (Pos('OLD_', fn) = 1) then {mbcs ok} |
2650 |
|
begin |
3814 |
|
FieldName := getSQLName; |
3815 |
|
FAliasNameList[i] := DBAliasName; |
3816 |
|
FieldSize := 0; |
3817 |
< |
FieldDataSize := 0; |
3817 |
> |
FieldDataSize := GetSize; |
3818 |
|
FieldPrecision := 0; |
3819 |
|
FieldNullable := IsNullable; |
3820 |
|
CharSetSize := 0; |
3831 |
|
CharSetSize := 1; |
3832 |
|
CharSetName := Database.Attachment.GetCharsetName(getCharSetID); |
3833 |
|
Database.Attachment.CharSetID2CodePage(getCharSetID,FieldCodePage); |
3832 |
– |
FieldDataSize := GetSize; |
3834 |
|
FieldSize := FieldDataSize div CharSetSize; |
3835 |
|
FieldType := ftString; |
3836 |
|
end; |
3845 |
|
FieldType := ftBCD; |
3846 |
|
FieldPrecision := 4; |
3847 |
|
FieldSize := -getScale; |
3847 |
– |
FieldDataSize := FieldSize; |
3848 |
|
end; |
3849 |
|
end; |
3850 |
|
SQL_LONG: |
3869 |
|
FieldPrecision := 9; |
3870 |
|
FieldSize := -getScale; |
3871 |
|
end; |
3872 |
– |
FieldDataSize := FieldSize; |
3872 |
|
end; |
3873 |
|
|
3874 |
|
SQL_INT64: |
3883 |
|
end |
3884 |
|
else |
3885 |
|
FieldType := ftFloat; |
3887 |
– |
FieldDataSize := FieldSize; |
3886 |
|
end; |
3887 |
|
SQL_TIMESTAMP: FieldType := ftDateTime; |
3888 |
|
SQL_TYPE_TIME: FieldType := ftTime; |
3900 |
|
end |
3901 |
|
else |
3902 |
|
FieldType := ftBlob; |
3905 |
– |
FieldDataSize := FieldSize; |
3903 |
|
end; |
3904 |
|
SQL_ARRAY: |
3905 |
|
begin |
3906 |
|
FieldSize := sizeof (TISC_QUAD); |
3910 |
– |
FieldDataSize := FieldSize; |
3907 |
|
FieldType := ftArray; |
3908 |
|
ArrayMetaData := GetArrayMetaData; |
3909 |
|
if ArrayMetaData <> nil then |
4683 |
|
Transaction.StartTransaction; |
4684 |
|
end; |
4685 |
|
|
4686 |
< |
function TIBCustomDataSet.PSGetTableName: string; |
4686 |
> |
function TIBCustomDataSet.PsGetTableName: string; |
4687 |
|
begin |
4688 |
|
// if not FInternalPrepared then |
4689 |
|
// InternalPrepare; |
4824 |
|
inherited Destroy; |
4825 |
|
end; |
4826 |
|
|
4827 |
< |
procedure TIBDataSetUpdateObject.SetRefreshSQL(Value: TStrings); |
4827 |
> |
procedure TIBDataSetUpdateObject.SetRefreshSQL(value: TStrings); |
4828 |
|
begin |
4829 |
|
FRefreshSQL.Assign(Value); |
4830 |
|
end; |
4831 |
|
|
4832 |
< |
procedure TIBDataSetUpdateObject.InternalSetParams(Query: TIBSQL; buff: PChar); |
4832 |
> |
procedure TIBDataSetUpdateObject.InternalSetParams(Params: ISQLParams; |
4833 |
> |
buff: PChar); |
4834 |
|
begin |
4835 |
|
if not Assigned(DataSet) then Exit; |
4836 |
< |
DataSet.SetInternalSQLParams(Query, buff); |
4836 |
> |
DataSet.SetInternalSQLParams(Params, buff); |
4837 |
> |
end; |
4838 |
> |
|
4839 |
> |
procedure TIBDataSetUpdateObject.InternalSetParams(Query: TIBSQL; buff: PChar); |
4840 |
> |
begin |
4841 |
> |
InternalSetParams(Query.Params,buff); |
4842 |
|
end; |
4843 |
|
|
4844 |
|
function TIBDSBlobStream.GetSize: Int64; |