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

Comparing ibx/trunk/runtime/IBSQL.pas (file contents):
Revision 7 by tony, Sun Aug 5 18:28:19 2012 UTC vs.
Revision 27 by tony, Tue Apr 14 13:10:23 2015 UTC

# Line 27 | Line 27
27   {    IBX For Lazarus (Firebird Express)                                  }
28   {    Contributor: Tony Whyman, MWA Software http://www.mwasoftware.co.uk }
29   {    Portions created by MWA Software are copyright McCallum Whyman      }
30 < {    Associates Ltd 2011                                                 }
30 > {    Associates Ltd 2011 - 2014                                                }
31   {                                                                        }
32   {************************************************************************}
33  
# Line 35 | Line 35 | unit IBSQL;
35  
36   {$Mode Delphi}
37  
38 + { IBSQL param names in dialect 3 quoted format (e.g. :"MyParam") are by default disabled.
39 +
40 + Dialect 3 quoted format parameter names represent a significant overhead and are of
41 + limited value - especially for users that use only TIBSQL or TIBCustomDataset
42 + descendents. They were previously used internally by IBX to simplify SQL generation
43 + for TTable components in Master/Slave relationships which are linked by
44 + Dialect 3 names. They were also generated by TStoredProc when the original
45 + parameter names are quoted.
46 +
47 + However, for some users they do cause a big processing overhead. The TTable/TStoredProc
48 + code has been re-written so that they are no required by IBX internally.
49 + The code to support quoted parameter names is now subject  to conditional compilation.
50 + To enable support, ALLOWDIALECT3PARAMNAMES should be defined when IBX is compiled.
51 +
52 + Hint: deleting the space between the brace and the dollar sign below
53 +
54 + }
55 +
56 + { $define ALLOWDIALECT3PARAMNAMES}
57 +
58 + {$ifndef ALLOWDIALECT3PARAMNAMES}
59 +
60 + { Even when dialect 3 quoted format parameter names are not supported, IBX still processes
61 +  parameter names case insensitive. This does result in some additional overhead
62 +  due to a call to "AnsiUpperCase". This can be avoided by undefining
63 +  "UseCaseSensitiveParamName" below.
64 +
65 +  Note: do not define "UseCaseSensitiveParamName" when "ALLOWDIALECT3PARAMNAMES"
66 +  is defined. This will not give a useful result.
67 + }
68 + {$define UseCaseSensitiveParamName}
69 + {$endif}
70 +
71   interface
72  
73   uses
# Line 46 | Line 79 | uses
79    SysUtils, Classes, Forms, Controls, IBHeader,
80    IBErrorCodes, IBExternals, DB, IB, IBDatabase, IBUtils, IBXConst;
81  
82 + const
83 +   sSQLErrorSeparator = ' When Executing: ';
84 +
85   type
86    TIBSQL = class;
87    TIBXSQLDA = class;
# Line 58 | Line 94 | type
94      FIndex: Integer;
95      FModified: Boolean;
96      FName: String;
97 +    FUniqueName: boolean;
98      FXSQLVAR: PXSQLVAR;       { Point to the PXSQLVAR in the owner object }
99  
100      function AdjustScale(Value: Int64; Scale: Integer): Double;
101      function AdjustScaleToInt64(Value: Int64; Scale: Integer): Int64;
102      function AdjustScaleToCurrency(Value: Int64; Scale: Integer): Currency;
103 +    function GetAsBoolean: boolean;
104      function GetAsCurrency: Currency;
105      function GetAsInt64: Int64;
106      function GetAsDateTime: TDateTime;
# Line 79 | Line 117 | type
117      function GetIsNullable: Boolean;
118      function GetSize: Integer;
119      function GetSQLType: Integer;
120 +    procedure SetAsBoolean(AValue: boolean);
121      procedure SetAsCurrency(Value: Currency);
122      procedure SetAsInt64(Value: Int64);
123      procedure SetAsDate(Value: TDateTime);
124 +    procedure SetAsLong(Value: Long);
125      procedure SetAsTime(Value: TDateTime);
126      procedure SetAsDateTime(Value: TDateTime);
127      procedure SetAsDouble(Value: Double);
128      procedure SetAsFloat(Value: Float);
89    procedure SetAsLong(Value: Long);
129      procedure SetAsPointer(Value: Pointer);
130      procedure SetAsQuad(Value: TISC_QUAD);
131      procedure SetAsShort(Value: Short);
# Line 95 | Line 134 | type
134      procedure SetAsXSQLVAR(Value: PXSQLVAR);
135      procedure SetIsNull(Value: Boolean);
136      procedure SetIsNullable(Value: Boolean);
137 +    procedure xSetAsBoolean(AValue: boolean);
138 +    procedure xSetAsCurrency(Value: Currency);
139 +    procedure xSetAsInt64(Value: Int64);
140 +    procedure xSetAsDate(Value: TDateTime);
141 +    procedure xSetAsTime(Value: TDateTime);
142 +    procedure xSetAsDateTime(Value: TDateTime);
143 +    procedure xSetAsDouble(Value: Double);
144 +    procedure xSetAsFloat(Value: Float);
145 +    procedure xSetAsLong(Value: Long);
146 +    procedure xSetAsPointer(Value: Pointer);
147 +    procedure xSetAsQuad(Value: TISC_QUAD);
148 +    procedure xSetAsShort(Value: Short);
149 +    procedure xSetAsString(Value: String);
150 +    procedure xSetAsVariant(Value: Variant);
151 +    procedure xSetAsXSQLVAR(Value: PXSQLVAR);
152 +    procedure xSetIsNull(Value: Boolean);
153 +    procedure xSetIsNullable(Value: Boolean);
154    public
155      constructor Create(Parent: TIBXSQLDA; Query: TIBSQL);
156      procedure Assign(Source: TIBXSQLVAR);
# Line 104 | Line 160 | type
160      procedure SaveToFile(const FileName: String);
161      procedure SaveToStream(Stream: TStream);
162      property AsDate: TDateTime read GetAsDateTime write SetAsDate;
163 +    property AsBoolean:boolean read GetAsBoolean write SetAsBoolean;
164      property AsTime: TDateTime read GetAsDateTime write SetAsTime;
165      property AsDateTime: TDateTime read GetAsDateTime write SetAsDateTime;
166      property AsDouble: Double read GetAsDouble write SetAsDouble;
# Line 131 | Line 188 | type
188  
189    TIBXSQLVARArray = Array of TIBXSQLVAR;
190  
191 <  { TIBXSQLVAR }
191 >  TIBXSQLDAType = (daInput,daOutput);
192 >
193 >  { TIBXSQLDA }
194 >
195    TIBXSQLDA = class(TObject)
196    protected
197      FSQL: TIBSQL;
198      FCount: Integer;
139    FNames: TStrings;
199      FSize: Integer;
200 +    FInputSQLDA: boolean;
201      FXSQLDA: PXSQLDA;
202      FXSQLVARs: TIBXSQLVARArray; { array of IBXQLVARs }
203      FUniqueRelationName: String;
204      function GetModified: Boolean;
145    function GetNames: String;
205      function GetRecordSize: Integer;
206      function GetXSQLDA: PXSQLDA;
207      function GetXSQLVAR(Idx: Integer): TIBXSQLVAR;
# Line 150 | Line 209 | type
209      procedure Initialize;
210      procedure SetCount(Value: Integer);
211    public
212 <    constructor Create(Query: TIBSQL);
212 >    constructor Create(Query: TIBSQL; sqldaType: TIBXSQLDAType);
213      destructor Destroy; override;
214 <    procedure AddName(FieldName: String; Idx: Integer);
214 >     procedure SetParamName(FieldName: String; Idx: Integer; UniqueName: boolean = false);
215      function ByName(Idx: String): TIBXSQLVAR;
216      property AsXSQLDA: PXSQLDA read GetXSQLDA;
217      property Count: Integer read FCount write SetCount;
218      property Modified: Boolean read GetModified;
160    property Names: String read GetNames;
219      property RecordSize: Integer read GetRecordSize;
220      property Vars[Idx: Integer]: TIBXSQLVAR read GetXSQLVAR; default;
221      property UniqueRelationName: String read FUniqueRelationName;
# Line 270 | Line 328 | type
328    TIBSQL = class(TComponent)
329    private
330      FIBLoaded: Boolean;
331 +    FUniqueParamNames: Boolean;
332      function GetFieldCount: integer;
333 +    procedure SetUniqueParamNames(AValue: Boolean);
334    protected
335      FBase: TIBBase;
336      FBOF,                          { At BOF? }
# Line 306 | Line 366 | type
366      procedure SetSQL(Value: TStrings);
367      procedure SetTransaction(Value: TIBTransaction);
368      procedure SQLChanging(Sender: TObject);
369 <    procedure BeforeTransactionEnd(Sender: TObject);
369 >    procedure BeforeTransactionEnd(Sender: TObject; Action: TTransactionAction);
370    public
371      constructor Create(AOwner: TComponent); override;
372      destructor Destroy; override;
# Line 340 | Line 400 | type
400      property SQLType: TIBSQLTypes read FSQLType;
401      property TRHandle: PISC_TR_HANDLE read GetTRHandle;
402      property Handle: TISC_STMT_HANDLE read FHandle;
343    property GenerateParamNames: Boolean read FGenerateParamNames write FGenerateParamNames;
403      property UniqueRelationName: String read GetUniqueRelationName;
404    published
405      property Database: TIBDatabase read GetDatabase write SetDatabase;
406 +    property GenerateParamNames: Boolean read FGenerateParamNames write FGenerateParamNames;
407 +    property UniqueParamNames: Boolean read FUniqueParamNames write SetUniqueParamNames;
408      property GoToFirstRecordOnExecute: Boolean read FGoToFirstRecordOnExecute
409                                                 write FGoToFirstRecordOnExecute
410                                                 default True;
# Line 531 | Line 592 | begin
592        result := Value;
593   end;
594  
595 + function TIBXSQLVAR.GetAsBoolean: boolean;
596 + begin
597 +  result := false;
598 +  if not IsNull then
599 +  begin
600 +    if FXSQLVAR^.sqltype and (not 1) = SQL_BOOLEAN then
601 +      result := PByte(FXSQLVAR^.sqldata)^ = ISC_TRUE
602 +    else
603 +      IBError(ibxeInvalidDataConversion, [nil]);
604 +  end
605 + end;
606 +
607   function TIBXSQLVAR.GetAsCurrency: Currency;
608   begin
609    result := 0;
# Line 842 | Line 915 | begin
915            result := AsDouble;
916        SQL_INT64:
917          if FXSQLVAR^.sqlscale = 0 then
918 <          IBError(ibxeInvalidDataConversion, [nil])
918 >          result := AsInt64
919          else if FXSQLVAR^.sqlscale >= (-4) then
920            result := AsCurrency
921          else
922            result := AsDouble;
923        SQL_DOUBLE, SQL_FLOAT, SQL_D_FLOAT:
924          result := AsDouble;
925 +      SQL_BOOLEAN:
926 +        result := AsBoolean;
927        else
928          IBError(ibxeInvalidDataConversion, [nil]);
929      end;
# Line 937 | Line 1012 | begin
1012    result := FXSQLVAR^.sqltype and (not 1);
1013   end;
1014  
1015 + procedure TIBXSQLVAR.SetAsBoolean(AValue: boolean);
1016 + var
1017 +  i: Integer;
1018 + begin
1019 +  if FUniqueName then
1020 +     xSetAsBoolean(AValue)
1021 +  else
1022 +  for i := 0 to FParent.FCount - 1 do
1023 +    if FParent[i].FName = FName then
1024 +       FParent[i].xSetAsBoolean(AValue);
1025 + end;
1026 +
1027 + procedure TIBXSQLVAR.xSetAsCurrency(Value: Currency);
1028 + begin
1029 +  if IsNullable then
1030 +    IsNull := False;
1031 +  FXSQLVAR^.sqltype := SQL_INT64 or (FXSQLVAR^.sqltype and 1);
1032 +  FXSQLVAR^.sqlscale := -4;
1033 +  FXSQLVAR^.sqllen := SizeOf(Int64);
1034 +  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1035 +  PCurrency(FXSQLVAR^.sqldata)^ := Value;
1036 +  FModified := True;
1037 + end;
1038 +
1039   procedure TIBXSQLVAR.SetAsCurrency(Value: Currency);
1040   var
942  xvar: TIBXSQLVAR;
1041    i: Integer;
1042   begin
1043    if FSQL.Database.SQLDialect < 3 then
1044      AsDouble := Value
1045    else
1046    begin
1047 <    if IsNullable then
1048 <      IsNull := False;
1047 >
1048 >    if FUniqueName then
1049 >       xSetAsCurrency(Value)
1050 >    else
1051      for i := 0 to FParent.FCount - 1 do
1052 <      if FParent.FNames[i] = FName then
1053 <      begin
954 <        xvar := FParent[i];
955 <        xvar.FXSQLVAR^.sqltype := SQL_INT64 or (xvar.FXSQLVAR^.sqltype and 1);
956 <        xvar.FXSQLVAR^.sqlscale := -4;
957 <        xvar.FXSQLVAR^.sqllen := SizeOf(Int64);
958 <        IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
959 <        PCurrency(xvar.FXSQLVAR^.sqldata)^ := Value;
960 <        xvar.FModified := True;
961 <      end;
1052 >      if FParent[i].FName = FName then
1053 >           FParent[i].xSetAsCurrency(Value);
1054    end;
1055   end;
1056  
1057 + procedure TIBXSQLVAR.xSetAsInt64(Value: Int64);
1058 + begin
1059 +  if IsNullable then
1060 +    IsNull := False;
1061 +
1062 +  FXSQLVAR^.sqltype := SQL_INT64 or (FXSQLVAR^.sqltype and 1);
1063 +  FXSQLVAR^.sqlscale := 0;
1064 +  FXSQLVAR^.sqllen := SizeOf(Int64);
1065 +  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1066 +  PInt64(FXSQLVAR^.sqldata)^ := Value;
1067 +  FModified := True;
1068 + end;
1069 +
1070   procedure TIBXSQLVAR.SetAsInt64(Value: Int64);
1071   var
1072    i: Integer;
1073 <  xvar: TIBXSQLVAR;
1073 > begin
1074 >  if FUniqueName then
1075 >     xSetAsInt64(Value)
1076 >  else
1077 >  for i := 0 to FParent.FCount - 1 do
1078 >    if FParent[i].FName = FName then
1079 >          FParent[i].xSetAsInt64(Value);
1080 > end;
1081 >
1082 > procedure TIBXSQLVAR.xSetAsDate(Value: TDateTime);
1083 > var
1084 >   tm_date: TCTimeStructure;
1085 >   Yr, Mn, Dy: Word;
1086   begin
1087    if IsNullable then
1088      IsNull := False;
1089 <  for i := 0 to FParent.FCount - 1 do
1090 <    if FParent.FNames[i] = FName then
1091 <    begin
1092 <      xvar := FParent[i];
1093 <      xvar.FXSQLVAR^.sqltype := SQL_INT64 or (xvar.FXSQLVAR^.sqltype and 1);
1094 <      xvar.FXSQLVAR^.sqlscale := 0;
1095 <      xvar.FXSQLVAR^.sqllen := SizeOf(Int64);
1096 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1097 <      PInt64(xvar.FXSQLVAR^.sqldata)^ := Value;
1098 <      xvar.FModified := True;
1099 <    end;
1089 >
1090 >  FXSQLVAR^.sqltype := SQL_TYPE_DATE or (FXSQLVAR^.sqltype and 1);
1091 >  DecodeDate(Value, Yr, Mn, Dy);
1092 >  with tm_date do begin
1093 >    tm_sec := 0;
1094 >    tm_min := 0;
1095 >    tm_hour := 0;
1096 >    tm_mday := Dy;
1097 >    tm_mon := Mn - 1;
1098 >    tm_year := Yr - 1900;
1099 >  end;
1100 >  FXSQLVAR^.sqllen := SizeOf(ISC_DATE);
1101 >  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1102 >  isc_encode_sql_date(@tm_date, PISC_DATE(FXSQLVAR^.sqldata));
1103 >  FModified := True;
1104   end;
1105  
1106   procedure TIBXSQLVAR.SetAsDate(Value: TDateTime);
1107   var
1108    i: Integer;
988  tm_date: TCTimeStructure;
989  Yr, Mn, Dy: Word;
990  xvar: TIBXSQLVAR;
1109   begin
1110    if FSQL.Database.SQLDialect < 3 then
1111    begin
1112      AsDateTime := Value;
1113      exit;
1114    end;
1115 +
1116 +  if FUniqueName then
1117 +     xSetAsDate(Value)
1118 +  else
1119 +  for i := 0 to FParent.FCount - 1 do
1120 +    if FParent[i].FName = FName then
1121 +       FParent[i].xSetAsDate(Value);
1122 + end;
1123 +
1124 + procedure TIBXSQLVAR.xSetAsTime(Value: TDateTime);
1125 + var
1126 +  tm_date: TCTimeStructure;
1127 +  Hr, Mt, S, Ms: Word;
1128 + begin
1129    if IsNullable then
1130      IsNull := False;
1131 <  for i := 0 to FParent.FCount - 1 do
1132 <    if FParent.FNames[i] = FName then
1133 <    begin
1134 <      xvar := FParent[i];
1135 <      xvar.FXSQLVAR^.sqltype := SQL_TYPE_DATE or (xvar.FXSQLVAR^.sqltype and 1);
1136 <      DecodeDate(Value, Yr, Mn, Dy);
1137 <      with tm_date do begin
1138 <        tm_sec := 0;
1139 <        tm_min := 0;
1140 <        tm_hour := 0;
1141 <        tm_mday := Dy;
1142 <        tm_mon := Mn - 1;
1143 <        tm_year := Yr - 1900;
1144 <      end;
1145 <      xvar.FXSQLVAR^.sqllen := SizeOf(ISC_DATE);
1146 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1147 <      isc_encode_sql_date(@tm_date, PISC_DATE(xvar.FXSQLVAR^.sqldata));
1016 <      xvar.FModified := True;
1017 <    end;
1131 >
1132 >  FXSQLVAR^.sqltype := SQL_TYPE_TIME or (FXSQLVAR^.sqltype and 1);
1133 >  DecodeTime(Value, Hr, Mt, S, Ms);
1134 >  with tm_date do begin
1135 >    tm_sec := S;
1136 >    tm_min := Mt;
1137 >    tm_hour := Hr;
1138 >    tm_mday := 0;
1139 >    tm_mon := 0;
1140 >    tm_year := 0;
1141 >  end;
1142 >  FXSQLVAR^.sqllen := SizeOf(ISC_TIME);
1143 >  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1144 >  isc_encode_sql_time(@tm_date, PISC_TIME(FXSQLVAR^.sqldata));
1145 >  if Ms > 0 then
1146 >    Inc(PISC_TIME(FXSQLVAR^.sqldata)^,Ms*10);
1147 >  FModified := True;
1148   end;
1149  
1150   procedure TIBXSQLVAR.SetAsTime(Value: TDateTime);
1151   var
1152    i: Integer;
1023  tm_date: TCTimeStructure;
1024  Hr, Mt, S, Ms: Word;
1025  xvar: TIBXSQLVAR;
1153   begin
1154    if FSQL.Database.SQLDialect < 3 then
1155    begin
1156      AsDateTime := Value;
1157      exit;
1158    end;
1159 <  if IsNullable then
1160 <    IsNull := False;
1159 >
1160 >  if FUniqueName then
1161 >     xSetAsTime(Value)
1162 >  else
1163    for i := 0 to FParent.FCount - 1 do
1164 <    if FParent.FNames[i] = FName then
1165 <    begin
1037 <      xvar := FParent[i];
1038 <      xvar.FXSQLVAR^.sqltype := SQL_TYPE_TIME or (xvar.FXSQLVAR^.sqltype and 1);
1039 <      DecodeTime(Value, Hr, Mt, S, Ms);
1040 <      with tm_date do begin
1041 <        tm_sec := S;
1042 <        tm_min := Mt;
1043 <        tm_hour := Hr;
1044 <        tm_mday := 0;
1045 <        tm_mon := 0;
1046 <        tm_year := 0;
1047 <      end;
1048 <      xvar.FXSQLVAR^.sqllen := SizeOf(ISC_TIME);
1049 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1050 <      isc_encode_sql_time(@tm_date, PISC_TIME(xvar.FXSQLVAR^.sqldata));
1051 <      if Ms > 0 then
1052 <        Inc(PISC_TIME(xvar.FXSQLVAR^.sqldata)^,Ms*10);
1053 <      xvar.FModified := True;
1054 <    end;
1164 >    if FParent[i].FName = FName then
1165 >       FParent[i].xSetAsTime(Value);
1166   end;
1167  
1168 < procedure TIBXSQLVAR.SetAsDateTime(Value: TDateTime);
1168 > procedure TIBXSQLVAR.xSetAsDateTime(Value: TDateTime);
1169   var
1059  i: Integer;
1170    tm_date: TCTimeStructure;
1171    Yr, Mn, Dy, Hr, Mt, S, Ms: Word;
1062  xvar: TIBXSQLVAR;
1172   begin
1173    if IsNullable then
1174      IsNull := False;
1175 +
1176 +  FXSQLVAR^.sqltype := SQL_TIMESTAMP or (FXSQLVAR^.sqltype and 1);
1177 +  DecodeDate(Value, Yr, Mn, Dy);
1178 +  DecodeTime(Value, Hr, Mt, S, Ms);
1179 +  with tm_date do begin
1180 +    tm_sec := S;
1181 +    tm_min := Mt;
1182 +    tm_hour := Hr;
1183 +    tm_mday := Dy;
1184 +    tm_mon := Mn - 1;
1185 +    tm_year := Yr - 1900;
1186 +  end;
1187 +  FXSQLVAR^.sqllen := SizeOf(TISC_QUAD);
1188 +  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1189 +  isc_encode_date(@tm_date, PISC_QUAD(FXSQLVAR^.sqldata));
1190 +  if Ms > 0 then
1191 +    Inc(PISC_TIMESTAMP(FXSQLVAR^.sqldata)^.timestamp_time,Ms*10);
1192 +  FModified := True;
1193 + end;
1194 +
1195 + procedure TIBXSQLVAR.SetAsDateTime(Value: TDateTime);
1196 + var
1197 +  i: Integer;
1198 + begin
1199 +  if FUniqueName then
1200 +     xSetAsDateTime(value)
1201 +  else
1202    for i := 0 to FParent.FCount - 1 do
1203 <    if FParent.FNames[i] = FName then
1204 <    begin
1205 <      xvar := FParent[i];
1206 <      xvar.FXSQLVAR^.sqltype := SQL_TIMESTAMP or (xvar.FXSQLVAR^.sqltype and 1);
1207 <      DecodeDate(Value, Yr, Mn, Dy);
1208 <      DecodeTime(Value, Hr, Mt, S, Ms);
1209 <      with tm_date do begin
1210 <        tm_sec := S;
1211 <        tm_min := Mt;
1212 <        tm_hour := Hr;
1213 <        tm_mday := Dy;
1214 <        tm_mon := Mn - 1;
1215 <        tm_year := Yr - 1900;
1216 <      end;
1217 <      xvar.FXSQLVAR^.sqllen := SizeOf(TISC_QUAD);
1082 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1083 <      isc_encode_date(@tm_date, PISC_QUAD(xvar.FXSQLVAR^.sqldata));
1084 <      if Ms > 0 then
1085 <        Inc(PISC_TIMESTAMP(xvar.FXSQLVAR^.sqldata)^.timestamp_time,Ms*10);
1086 <      xvar.FModified := True;
1087 <    end;
1203 >    if FParent[i].FName = FName then
1204 >       FParent[i].xSetAsDateTime(Value);
1205 > end;
1206 >
1207 > procedure TIBXSQLVAR.xSetAsDouble(Value: Double);
1208 > begin
1209 >  if IsNullable then
1210 >    IsNull := False;
1211 >
1212 >  FXSQLVAR^.sqltype := SQL_DOUBLE or (FXSQLVAR^.sqltype and 1);
1213 >  FXSQLVAR^.sqllen := SizeOf(Double);
1214 >  FXSQLVAR^.sqlscale := 0;
1215 >  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1216 >  PDouble(FXSQLVAR^.sqldata)^ := Value;
1217 >  FModified := True;
1218   end;
1219  
1220   procedure TIBXSQLVAR.SetAsDouble(Value: Double);
1221   var
1222    i: Integer;
1223 <  xvar: TIBXSQLVAR;
1223 > begin
1224 >  if FUniqueName then
1225 >     xSetAsDouble(Value)
1226 >  else
1227 >  for i := 0 to FParent.FCount - 1 do
1228 >    if FParent[i].FName = FName then
1229 >       FParent[i].xSetAsDouble(Value);
1230 > end;
1231 >
1232 > procedure TIBXSQLVAR.xSetAsFloat(Value: Float);
1233   begin
1234    if IsNullable then
1235      IsNull := False;
1236 <  for i := 0 to FParent.FCount - 1 do
1237 <    if FParent.FNames[i] = FName then
1238 <    begin
1239 <      xvar := FParent[i];
1240 <      xvar.FXSQLVAR^.sqltype := SQL_DOUBLE or (xvar.FXSQLVAR^.sqltype and 1);
1241 <      xvar.FXSQLVAR^.sqllen := SizeOf(Double);
1242 <      xvar.FXSQLVAR^.sqlscale := 0;
1104 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1105 <      PDouble(xvar.FXSQLVAR^.sqldata)^ := Value;
1106 <      xvar.FModified := True;
1107 <    end;
1236 >
1237 >  FXSQLVAR^.sqltype := SQL_FLOAT or (FXSQLVAR^.sqltype and 1);
1238 >  FXSQLVAR^.sqllen := SizeOf(Float);
1239 >  FXSQLVAR^.sqlscale := 0;
1240 >  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1241 >  PSingle(FXSQLVAR^.sqldata)^ := Value;
1242 >  FModified := True;
1243   end;
1244  
1245   procedure TIBXSQLVAR.SetAsFloat(Value: Float);
1246   var
1247    i: Integer;
1248 <  xvar: TIBXSQLVAR;
1248 > begin
1249 >  if FUniqueName then
1250 >     xSetAsFloat(Value)
1251 >  else
1252 >  for i := 0 to FParent.FCount - 1 do
1253 >    if FParent[i].FName = FName then
1254 >       FParent[i].xSetAsFloat(Value);
1255 > end;
1256 >
1257 > procedure TIBXSQLVAR.xSetAsLong(Value: Long);
1258   begin
1259    if IsNullable then
1260      IsNull := False;
1261 <  for i := 0 to FParent.FCount - 1 do
1262 <    if FParent.FNames[i] = FName then
1263 <    begin
1264 <      xvar := FParent[i];
1265 <      xvar.FXSQLVAR^.sqltype := SQL_FLOAT or (xvar.FXSQLVAR^.sqltype and 1);
1266 <      xvar.FXSQLVAR^.sqllen := SizeOf(Float);
1267 <      xvar.FXSQLVAR^.sqlscale := 0;
1124 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1125 <      PSingle(xvar.FXSQLVAR^.sqldata)^ := Value;
1126 <      xvar.FModified := True;
1127 <    end;
1261 >
1262 >  FXSQLVAR^.sqltype := SQL_LONG or (FXSQLVAR^.sqltype and 1);
1263 >  FXSQLVAR^.sqllen := SizeOf(Long);
1264 >  FXSQLVAR^.sqlscale := 0;
1265 >  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1266 >  PLong(FXSQLVAR^.sqldata)^ := Value;
1267 >  FModified := True;
1268   end;
1269  
1270   procedure TIBXSQLVAR.SetAsLong(Value: Long);
1271   var
1272    i: Integer;
1133  xvar: TIBXSQLVAR;
1273   begin
1274 <  if IsNullable then
1275 <    IsNull := False;
1274 >  if FUniqueName then
1275 >     xSetAsLong(Value)
1276 >  else
1277    for i := 0 to FParent.FCount - 1 do
1278 <    if FParent.FNames[i] = FName then
1279 <    begin
1140 <      xvar := FParent[i];
1141 <      xvar.FXSQLVAR^.sqltype := SQL_LONG or (xvar.FXSQLVAR^.sqltype and 1);
1142 <      xvar.FXSQLVAR^.sqllen := SizeOf(Long);
1143 <      xvar.FXSQLVAR^.sqlscale := 0;
1144 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1145 <      PLong(xvar.FXSQLVAR^.sqldata)^ := Value;
1146 <      xvar.FModified := True;
1147 <    end;
1278 >    if FParent[i].FName = FName then
1279 >       FParent[i].xSetAsLong(Value);
1280   end;
1281  
1282 < procedure TIBXSQLVAR.SetAsPointer(Value: Pointer);
1151 < var
1152 <  i: Integer;
1153 <  xvar: TIBXSQLVAR;
1282 > procedure TIBXSQLVAR.xSetAsPointer(Value: Pointer);
1283   begin
1284    if IsNullable and (Value = nil) then
1285      IsNull := True
1286    else begin
1287      IsNull := False;
1288 <    for i := 0 to FParent.FCount - 1 do
1289 <      if FParent.FNames[i] = FName then
1161 <      begin
1162 <        xvar := FParent[i];
1163 <        xvar.FXSQLVAR^.sqltype := SQL_TEXT or (FXSQLVAR^.sqltype and 1);
1164 <        Move(Value^, xvar.FXSQLVAR^.sqldata^, xvar.FXSQLVAR^.sqllen);
1165 <        xvar.FModified := True;
1166 <      end;
1288 >    FXSQLVAR^.sqltype := SQL_TEXT or (FXSQLVAR^.sqltype and 1);
1289 >    Move(Value^, FXSQLVAR^.sqldata^, FXSQLVAR^.sqllen);
1290    end;
1291 +  FModified := True;
1292 + end;
1293 +
1294 + procedure TIBXSQLVAR.SetAsPointer(Value: Pointer);
1295 + var
1296 +  i: Integer;
1297 + begin
1298 +    if FUniqueName then
1299 +       xSetAsPointer(Value)
1300 +    else
1301 +    for i := 0 to FParent.FCount - 1 do
1302 +      if FParent[i].FName = FName then
1303 +         FParent[i].xSetAsPointer(Value);
1304 + end;
1305 +
1306 + procedure TIBXSQLVAR.xSetAsQuad(Value: TISC_QUAD);
1307 + begin
1308 +  if IsNullable then
1309 +      IsNull := False;
1310 +  if (FXSQLVAR^.sqltype and (not 1) <> SQL_BLOB) and
1311 +     (FXSQLVAR^.sqltype and (not 1) <> SQL_ARRAY) then
1312 +    IBError(ibxeInvalidDataConversion, [nil]);
1313 +  FXSQLVAR^.sqllen := SizeOf(TISC_QUAD);
1314 +  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1315 +  PISC_QUAD(FXSQLVAR^.sqldata)^ := Value;
1316 +  FModified := True;
1317   end;
1318  
1319   procedure TIBXSQLVAR.SetAsQuad(Value: TISC_QUAD);
1320   var
1321    i: Integer;
1322 <  xvar: TIBXSQLVAR;
1322 > begin
1323 >  if FUniqueName then
1324 >     xSetAsQuad(Value)
1325 >  else
1326 >  for i := 0 to FParent.FCount - 1 do
1327 >    if FParent[i].FName = FName then
1328 >       FParent[i].xSetAsQuad(Value);
1329 > end;
1330 >
1331 > procedure TIBXSQLVAR.xSetAsShort(Value: Short);
1332   begin
1333    if IsNullable then
1334      IsNull := False;
1335 <  for i := 0 to FParent.FCount - 1 do
1336 <    if FParent.FNames[i] = FName then
1337 <    begin
1338 <      xvar := FParent[i];
1339 <      if (xvar.FXSQLVAR^.sqltype and (not 1) <> SQL_BLOB) and
1340 <         (xvar.FXSQLVAR^.sqltype and (not 1) <> SQL_ARRAY) then
1341 <        IBError(ibxeInvalidDataConversion, [nil]);
1184 <      xvar.FXSQLVAR^.sqllen := SizeOf(TISC_QUAD);
1185 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1186 <      PISC_QUAD(xvar.FXSQLVAR^.sqldata)^ := Value;
1187 <      xvar.FModified := True;
1188 <    end;
1335 >
1336 >  FXSQLVAR^.sqltype := SQL_SHORT or (FXSQLVAR^.sqltype and 1);
1337 >  FXSQLVAR^.sqllen := SizeOf(Short);
1338 >  FXSQLVAR^.sqlscale := 0;
1339 >  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1340 >  PShort(FXSQLVAR^.sqldata)^ := Value;
1341 >  FModified := True;
1342   end;
1343  
1344   procedure TIBXSQLVAR.SetAsShort(Value: Short);
1345   var
1346    i: Integer;
1194  xvar: TIBXSQLVAR;
1347   begin
1348 <  if IsNullable then
1349 <    IsNull := False;
1348 >  if FUniqueName then
1349 >     xSetAsShort(Value)
1350 >  else
1351    for i := 0 to FParent.FCount - 1 do
1352 <    if FParent.FNames[i] = FName then
1353 <    begin
1201 <      xvar := FParent[i];
1202 <      xvar.FXSQLVAR^.sqltype := SQL_SHORT or (xvar.FXSQLVAR^.sqltype and 1);
1203 <      xvar.FXSQLVAR^.sqllen := SizeOf(Short);
1204 <      xvar.FXSQLVAR^.sqlscale := 0;
1205 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen);
1206 <      PShort(xvar.FXSQLVAR^.sqldata)^ := Value;
1207 <      xvar.FModified := True;
1208 <    end;
1352 >    if FParent[i].FName = FName then
1353 >       FParent[i].xSetAsShort(Value);
1354   end;
1355  
1356 < procedure TIBXSQLVAR.SetAsString(Value: String);
1356 > procedure TIBXSQLVAR.xSetAsString(Value: String);
1357   var
1358 <  stype: Integer;
1359 <  ss: TStringStream;
1358 >   stype: Integer;
1359 >   ss: TStringStream;
1360  
1361 <  procedure SetStringValue;
1362 <  var
1363 <    i: Integer;
1364 <    xvar: TIBXSQLVAR;
1365 <  begin
1366 <    for i := 0 to FParent.FCount - 1 do
1367 <      if FParent.FNames[i] = FName then
1368 <      begin
1369 <        xvar := FParent[i];
1370 <        if (xvar.FXSQLVAR^.sqlname = 'DB_KEY') or {do not localize}
1371 <           (xvar.FXSQLVAR^.sqlname = 'RDB$DB_KEY') then {do not localize}
1372 <          Move(Value[1], xvar.FXSQLVAR^.sqldata^, xvar.FXSQLVAR^.sqllen)
1373 <        else begin
1229 <          xvar.FXSQLVAR^.sqltype := SQL_TEXT or (FXSQLVAR^.sqltype and 1);
1230 <          xvar.FXSQLVAR^.sqllen := Length(Value);
1231 <          IBAlloc(xvar.FXSQLVAR^.sqldata, 0, xvar.FXSQLVAR^.sqllen + 1);
1232 <          if (Length(Value) > 0) then
1233 <            Move(Value[1], xvar.FXSQLVAR^.sqldata^, xvar.FXSQLVAR^.sqllen);
1234 <        end;
1235 <        xvar.FModified := True;
1361 >   procedure SetStringValue;
1362 >   var
1363 >      i: Integer;
1364 >   begin
1365 >      if (FXSQLVAR^.sqlname = 'DB_KEY') or {do not localize}
1366 >         (FXSQLVAR^.sqlname = 'RDB$DB_KEY') then {do not localize}
1367 >        Move(Value[1], FXSQLVAR^.sqldata^, FXSQLVAR^.sqllen)
1368 >      else begin
1369 >        FXSQLVAR^.sqltype := SQL_TEXT or (FXSQLVAR^.sqltype and 1);
1370 >        FXSQLVAR^.sqllen := Length(Value);
1371 >        IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen + 1);
1372 >        if (Length(Value) > 0) then
1373 >          Move(Value[1], FXSQLVAR^.sqldata^, FXSQLVAR^.sqllen);
1374        end;
1375 <  end;
1375 >      FModified := True;
1376 >   end;
1377  
1378   begin
1379    if IsNullable then
1380      IsNull := False;
1381 +
1382    stype := FXSQLVAR^.sqltype and (not 1);
1383    if (stype = SQL_TEXT) or (stype = SQL_VARYING) then
1384      SetStringValue
# Line 1256 | Line 1396 | begin
1396        IsNull := True
1397      else if (stype = SQL_TIMESTAMP) or (stype = SQL_TYPE_DATE) or
1398        (stype = SQL_TYPE_TIME) then
1399 <      SetAsDateTime(StrToDateTime(Value))
1399 >      xSetAsDateTime(StrToDateTime(Value))
1400      else
1401        SetStringValue;
1402    end;
1403   end;
1404  
1405 < procedure TIBXSQLVAR.SetAsVariant(Value: Variant);
1405 > procedure TIBXSQLVAR.SetAsString(Value: String);
1406 > var
1407 >   i: integer;
1408 > begin
1409 >  if FUniqueName then
1410 >     xSetAsString(Value)
1411 >  else
1412 >  for i := 0 to FParent.FCount - 1 do
1413 >    if FParent[i].FName = FName then
1414 >       FParent[i].xSetAsString(Value);
1415 > end;
1416 >
1417 > procedure TIBXSQLVAR.xSetAsVariant(Value: Variant);
1418   begin
1419    if VarIsNull(Value) then
1420      IsNull := True
1421    else case VarType(Value) of
1422      varEmpty, varNull:
1423        IsNull := True;
1424 <    varSmallint, varInteger, varByte:
1424 >    varSmallint, varInteger, varByte,
1425 >      varWord, varShortInt:
1426        AsLong := Value;
1427 +    varInt64:
1428 +      AsInt64 := Value;
1429      varSingle, varDouble:
1430        AsDouble := Value;
1431      varCurrency:
1432        AsCurrency := Value;
1433      varBoolean:
1434 <      if Value then
1280 <        AsLong := ISC_TRUE
1281 <      else
1282 <        AsLong := ISC_FALSE;
1434 >      AsBoolean := Value;
1435      varDate:
1436        AsDateTime := Value;
1437      varOleStr, varString:
# Line 1291 | Line 1443 | begin
1443    end;
1444   end;
1445  
1446 < procedure TIBXSQLVAR.SetAsXSQLVAR(Value: PXSQLVAR);
1446 > procedure TIBXSQLVAR.SetAsVariant(Value: Variant);
1447 > var
1448 >   i: integer;
1449 > begin
1450 >  if FUniqueName then
1451 >     xSetAsVariant(Value)
1452 >  else
1453 >  for i := 0 to FParent.FCount - 1 do
1454 >    if FParent[i].FName = FName then
1455 >       FParent[i].xSetAsVariant(Value);
1456 > end;
1457 >
1458 > procedure TIBXSQLVAR.xSetAsXSQLVAR(Value: PXSQLVAR);
1459   var
1296  i: Integer;
1297  xvar: TIBXSQLVAR;
1460    sqlind: PShort;
1461    sqldata: PChar;
1462    local_sqllen: Integer;
1463   begin
1464 <  for i := 0 to FParent.FCount - 1 do
1465 <    if FParent.FNames[i] = FName then
1466 <    begin
1467 <      xvar := FParent[i];
1468 <      sqlind := xvar.FXSQLVAR^.sqlind;
1469 <      sqldata := xvar.FXSQLVAR^.sqldata;
1470 <      Move(Value^, xvar.FXSQLVAR^, SizeOf(TXSQLVAR));
1471 <      xvar.FXSQLVAR^.sqlind := sqlind;
1472 <      xvar.FXSQLVAR^.sqldata := sqldata;
1473 <      if (Value^.sqltype and 1 = 1) then
1474 <      begin
1475 <        if (xvar.FXSQLVAR^.sqlind = nil) then
1476 <          IBAlloc(xvar.FXSQLVAR^.sqlind, 0, SizeOf(Short));
1477 <        xvar.FXSQLVAR^.sqlind^ := Value^.sqlind^;
1478 <      end
1479 <      else
1480 <        if (xvar.FXSQLVAR^.sqlind <> nil) then
1481 <          ReallocMem(xvar.FXSQLVAR^.sqlind, 0);
1482 <      if ((xvar.FXSQLVAR^.sqltype and (not 1)) = SQL_VARYING) then
1483 <        local_sqllen := xvar.FXSQLVAR^.sqllen + 2
1484 <      else
1485 <        local_sqllen := xvar.FXSQLVAR^.sqllen;
1324 <      FXSQLVAR^.sqlscale := Value^.sqlscale;
1325 <      IBAlloc(xvar.FXSQLVAR^.sqldata, 0, local_sqllen);
1326 <      Move(Value^.sqldata[0], xvar.FXSQLVAR^.sqldata[0], local_sqllen);
1327 <      xvar.FModified := True;
1328 <    end;
1464 >  sqlind := FXSQLVAR^.sqlind;
1465 >  sqldata := FXSQLVAR^.sqldata;
1466 >  Move(Value^, FXSQLVAR^, SizeOf(TXSQLVAR));
1467 >  FXSQLVAR^.sqlind := sqlind;
1468 >  FXSQLVAR^.sqldata := sqldata;
1469 >  if (Value^.sqltype and 1 = 1) then
1470 >  begin
1471 >    if (FXSQLVAR^.sqlind = nil) then
1472 >      IBAlloc(FXSQLVAR^.sqlind, 0, SizeOf(Short));
1473 >    FXSQLVAR^.sqlind^ := Value^.sqlind^;
1474 >  end
1475 >  else
1476 >    if (FXSQLVAR^.sqlind <> nil) then
1477 >      ReallocMem(FXSQLVAR^.sqlind, 0);
1478 >  if ((FXSQLVAR^.sqltype and (not 1)) = SQL_VARYING) then
1479 >    local_sqllen := FXSQLVAR^.sqllen + 2
1480 >  else
1481 >    local_sqllen := FXSQLVAR^.sqllen;
1482 >  FXSQLVAR^.sqlscale := Value^.sqlscale;
1483 >  IBAlloc(FXSQLVAR^.sqldata, 0, local_sqllen);
1484 >  Move(Value^.sqldata[0], FXSQLVAR^.sqldata[0], local_sqllen);
1485 >  FModified := True;
1486   end;
1487  
1488 < procedure TIBXSQLVAR.SetIsNull(Value: Boolean);
1488 > procedure TIBXSQLVAR.SetAsXSQLVAR(Value: PXSQLVAR);
1489   var
1490    i: Integer;
1491 <  xvar: TIBXSQLVAR;
1491 > begin
1492 >  if FUniqueName then
1493 >     xSetAsXSQLVAR(Value)
1494 >  else
1495 >  for i := 0 to FParent.FCount - 1 do
1496 >    if FParent[i].FName = FName then
1497 >       FParent[i].xSetAsXSQLVAR(Value);
1498 > end;
1499 >
1500 > procedure TIBXSQLVAR.xSetIsNull(Value: Boolean);
1501   begin
1502    if Value then
1503    begin
1504      if not IsNullable then
1505        IsNullable := True;
1506 <    for i := 0 to FParent.FCount - 1 do
1507 <      if FParent.FNames[i] = FName then
1508 <      begin
1509 <        xvar := FParent[i];
1344 <        if Assigned(xvar.FXSQLVAR^.sqlind) then
1345 <          xvar.FXSQLVAR^.sqlind^ := -1;
1346 <        xvar.FModified := True;
1347 <      end;
1506 >
1507 >    if Assigned(FXSQLVAR^.sqlind) then
1508 >      FXSQLVAR^.sqlind^ := -1;
1509 >    FModified := True;
1510    end
1511    else
1512      if ((not Value) and IsNullable) then
1513      begin
1514 <      for i := 0 to FParent.FCount - 1 do
1515 <        if FParent.FNames[i] = FName then
1516 <        begin
1355 <          xvar := FParent[i];
1356 <          if Assigned(xvar.FXSQLVAR^.sqlind) then
1357 <            xvar.FXSQLVAR^.sqlind^ := 0;
1358 <          xvar.FModified := True;
1359 <        end;
1514 >      if Assigned(FXSQLVAR^.sqlind) then
1515 >        FXSQLVAR^.sqlind^ := 0;
1516 >      FModified := True;
1517      end;
1518   end;
1519  
1520 < procedure TIBXSQLVAR.SetIsNullable(Value: Boolean);
1520 > procedure TIBXSQLVAR.SetIsNull(Value: Boolean);
1521   var
1522    i: Integer;
1366  xvar: TIBXSQLVAR;
1523   begin
1524 +  if FUniqueName then
1525 +     xSetIsNull(Value)
1526 +  else
1527    for i := 0 to FParent.FCount - 1 do
1528 <    if FParent.FNames[i] = FName then
1528 >    if FParent[i].FName = FName then
1529 >       FParent[i].xSetIsNull(Value);
1530 > end;
1531 >
1532 > procedure TIBXSQLVAR.xSetIsNullable(Value: Boolean);
1533 > begin
1534 >  if (Value <> IsNullable) then
1535 >  begin
1536 >    if Value then
1537      begin
1538 <      xvar := FParent[i];
1539 <      if (Value <> IsNullable) then
1540 <      begin
1541 <        if Value then
1542 <        begin
1543 <          xvar.FXSQLVAR^.sqltype := xvar.FXSQLVAR^.sqltype or 1;
1544 <          IBAlloc(xvar.FXSQLVAR^.sqlind, 0, SizeOf(Short));
1378 <        end
1379 <        else
1380 <        begin
1381 <          xvar.FXSQLVAR^.sqltype := xvar.FXSQLVAR^.sqltype and (not 1);
1382 <          ReallocMem(xvar.FXSQLVAR^.sqlind, 0);
1383 <        end;
1384 <      end;
1538 >      FXSQLVAR^.sqltype := FXSQLVAR^.sqltype or 1;
1539 >      IBAlloc(FXSQLVAR^.sqlind, 0, SizeOf(Short));
1540 >    end
1541 >    else
1542 >    begin
1543 >      FXSQLVAR^.sqltype := FXSQLVAR^.sqltype and (not 1);
1544 >      ReallocMem(FXSQLVAR^.sqlind, 0);
1545      end;
1546 +  end;
1547 + end;
1548 +
1549 + procedure TIBXSQLVAR.SetIsNullable(Value: Boolean);
1550 + var
1551 +  i: Integer;
1552 + begin
1553 +  if FUniqueName then
1554 +     xSetIsNullable(Value)
1555 +  else
1556 +  for i := 0 to FParent.FCount - 1 do
1557 +    if FParent[i].FName = FName then
1558 +       FParent[i].xSetIsNullable(Value);
1559 + end;
1560 +
1561 + procedure TIBXSQLVAR.xSetAsBoolean(AValue: boolean);
1562 + begin
1563 +  if IsNullable then
1564 +    IsNull := False;
1565 +
1566 +  FXSQLVAR^.sqltype := SQL_BOOLEAN;
1567 +  FXSQLVAR^.sqllen := 1;
1568 +  FXSQLVAR^.sqlscale := 0;
1569 +  IBAlloc(FXSQLVAR^.sqldata, 0, FXSQLVAR^.sqllen);
1570 +  if AValue then
1571 +    PByte(FXSQLVAR^.sqldata)^ := ISC_TRUE
1572 +  else
1573 +    PByte(FXSQLVAR^.sqldata)^ := ISC_FALSE;
1574 +  FModified := True;
1575   end;
1576  
1577   procedure TIBXSQLVAR.Clear;
# Line 1392 | Line 1581 | end;
1581  
1582  
1583   { TIBXSQLDA }
1584 < constructor TIBXSQLDA.Create(Query: TIBSQL);
1584 > constructor TIBXSQLDA.Create(Query: TIBSQL; sqldaType: TIBXSQLDAType);
1585   begin
1586    inherited Create;
1587    FSQL := Query;
1399  FNames := TStringList.Create;
1588    FSize := 0;
1589    FUniqueRelationName := '';
1590 +  FInputSQLDA := sqldaType = daInput;
1591   end;
1592  
1593   destructor TIBXSQLDA.Destroy;
1594   var
1595    i: Integer;
1596   begin
1408  FNames.Free;
1597    if FXSQLDA <> nil then
1598    begin
1599      for i := 0 to FSize - 1 do
# Line 1421 | Line 1609 | begin
1609    inherited Destroy;
1610   end;
1611  
1612 < procedure TIBXSQLDA.AddName(FieldName: String; Idx: Integer);
1612 >    procedure TIBXSQLDA.SetParamName(FieldName: String; Idx: Integer;
1613 >    UniqueName: boolean);
1614   var
1615 <  fn: String;
1615 >  fn: string;
1616   begin
1617 <  fn := FormatIdentifierValue(FSQL.Database.SQLDialect, FieldName);
1618 <  while FNames.Count <= Idx do
1619 <    FNames.Add('');
1620 <  FNames[Idx] := fn;
1621 <  FXSQLVARs[Idx].FName := fn;
1617 >  {$ifdef UseCaseSensitiveParamName}
1618 >  FXSQLVARs[Idx].FName := AnsiUpperCase(FieldName);
1619 >  {$else}
1620 >  FXSQLVARs[Idx].FName := FieldName;
1621 >  {$endif}
1622    FXSQLVARs[Idx].FIndex := Idx;
1623 +  FXSQLVARs[Idx].FUniqueName :=  UniqueName
1624   end;
1625  
1626   function TIBXSQLDA.GetModified: Boolean;
# Line 1446 | Line 1636 | begin
1636      end;
1637   end;
1638  
1449 function TIBXSQLDA.GetNames: String;
1450 begin
1451  result := FNames.Text;
1452 end;
1453
1639   function TIBXSQLDA.GetRecordSize: Integer;
1640   begin
1641    result := SizeOf(TIBXSQLDA) + XSQLDA_LENGTH(FSize);
# Line 1478 | Line 1663 | end;
1663   function TIBXSQLDA.GetXSQLVARByName(Idx: String): TIBXSQLVAR;
1664   var
1665    s: String;
1666 <  i, Cnt: Integer;
1666 >  i: Integer;
1667   begin
1668 <  s := FormatIdentifierValue(FSQL.Database.SQLDialect, Idx);
1669 <  i := 0;
1670 <  Cnt := FNames.Count;
1671 <  while (i < Cnt) and (FNames[i] <> s) do Inc(i);
1672 <  if i = Cnt then
1673 <    result := nil
1674 <  else
1675 <    result := GetXSQLVAR(i);
1668 >  {$ifdef ALLOWDIALECT3PARAMNAMES}
1669 >  s := FormatIdentifierValueNC(FSQL.Database.SQLDialect, Idx);
1670 >  {$else}
1671 >  {$ifdef UseCaseSensitiveParamName}
1672 >   s := AnsiUpperCase(Idx);
1673 >  {$else}
1674 >   s := Idx;
1675 >  {$endif}
1676 >  {$endif}
1677 >  for i := 0 to FCount - 1 do
1678 >    if Vars[i].FName = s then
1679 >    begin
1680 >         Result := FXSQLVARs[i];
1681 >         Exit;
1682 >    end;
1683 >  Result := nil;
1684   end;
1685  
1686   procedure TIBXSQLDA.Initialize;
1687 +
1688 +    function VarByName(idx: string; limit: integer): TIBXSQLVAR;
1689 +    var
1690 +       k: integer;
1691 +    begin
1692 +         for k := 0 to limit do
1693 +             if FXSQLVARs[k].FName = idx then
1694 +             begin
1695 +                  Result := FXSQLVARs[k];
1696 +                  Exit;
1697 +             end;
1698 +         Result := nil;
1699 +    end;
1700 +
1701   var
1702    i, j, j_len: Integer;
1496  NamesWereEmpty: Boolean;
1703    st: String;
1704    bUnique: Boolean;
1705 +  sBaseName: string;
1706   begin
1707    bUnique := True;
1501  NamesWereEmpty := (FNames.Count = 0);
1708    if FXSQLDA <> nil then
1709    begin
1710      for i := 0 to FCount - 1 do
1711      begin
1712        with FXSQLVARs[i].Data^ do
1713        begin
1714 +
1715 +        {First get the unique relation name, if any}
1716 +
1717          if bUnique and (strpas(relname) <> '') then
1718          begin
1719            if FUniqueRelationName = '' then
# Line 1516 | Line 1725 | begin
1725                bUnique := False;
1726              end;
1727          end;
1728 <        if NamesWereEmpty then
1728 >
1729 >        {If an output SQLDA then copy the aliasnames to the FName list. Ensure
1730 >         that they are all upper case only and disambiguated.
1731 >        }
1732 >
1733 >        if not FInputSQLDA then
1734          begin
1735 <          st := strpas(aliasname);
1735 >          st := Space2Underscore(AnsiUppercase(strpas(aliasname)));
1736            if st = '' then
1737            begin
1738 <            st := 'F_'; {do not localize}
1738 >            sBaseName := 'F_'; {do not localize}
1739              aliasname_length := 2;
1740              j := 1; j_len := 1;
1741 <            StrPCopy(aliasname, st + IntToStr(j));
1741 >            st := sBaseName + IntToStr(j);
1742            end
1743            else
1744            begin
1531            StrPCopy(aliasname, st);
1745              j := 0; j_len := 0;
1746 +            sBaseName := st;
1747            end;
1748 <          while GetXSQLVARByName(strpas(aliasname)) <> nil do
1748 >
1749 >          {Look for other columns with the same name and make unique}
1750 >
1751 >          while VarByName(st,i-1) <> nil do
1752            begin
1753 <            Inc(j); j_len := Length(IntToStr(j));
1754 <            if j_len + aliasname_length > 31 then
1755 <              StrPCopy(aliasname,
1756 <                       Copy(st, 1, 31 - j_len) +
1757 <                       IntToStr(j))
1758 <            else
1542 <              StrPCopy(aliasname, st + IntToStr(j));
1753 >               Inc(j);
1754 >               j_len := Length(IntToStr(j));
1755 >               if j_len + Length(sBaseName) > 31 then
1756 >                  st := Copy(sBaseName, 1, 31 - j_len) + IntToStr(j)
1757 >               else
1758 >                  st := sBaseName + IntToStr(j);
1759            end;
1760 <          Inc(aliasname_length, j_len);
1761 <          AddName(strpas(aliasname), i);
1760 >
1761 >          FXSQLVARs[i].FName := st;
1762          end;
1763 +
1764 +        {Finally initialise the XSQLVAR}
1765 +
1766 +        FXSQLVARs[i].FIndex := i;
1767 +
1768          case sqltype and (not 1) of
1769            SQL_TEXT, SQL_TYPE_DATE, SQL_TYPE_TIME, SQL_TIMESTAMP,
1770 <          SQL_BLOB, SQL_ARRAY, SQL_QUAD, SQL_SHORT,
1770 >          SQL_BLOB, SQL_ARRAY, SQL_QUAD, SQL_SHORT, SQL_BOOLEAN,
1771            SQL_LONG, SQL_INT64, SQL_DOUBLE, SQL_FLOAT, SQL_D_FLOAT: begin
1772              if (sqllen = 0) then
1773                { Make sure you get a valid pointer anyway
# Line 1576 | Line 1797 | var
1797    i, OldSize: Integer;
1798    p : PXSQLVAR;
1799   begin
1579  FNames.Clear;
1800    FCount := Value;
1801    if FCount = 0 then
1802      FUniqueRelationName := ''
# Line 1935 | Line 2155 | begin
2155    TStringList(FSQL).OnChanging := SQLChanging;
2156    FProcessedSQL := TStringList.Create;
2157    FHandle := nil;
2158 <  FSQLParams := TIBXSQLDA.Create(self);
2159 <  FSQLRecord := TIBXSQLDA.Create(self);
2158 >  FSQLParams := TIBXSQLDA.Create(self,daInput);
2159 >  FSQLRecord := TIBXSQLDA.Create(self,daOutput);
2160    FSQLType := SQLUnknown;
2161    FParamCheck := True;
2162    FCursor := Name + RandomString(8);
# Line 2054 | Line 2274 | begin
2274    Result := FSQLRecord.Count
2275   end;
2276  
2277 + procedure TIBSQL.SetUniqueParamNames(AValue: Boolean);
2278 + begin
2279 +  if FUniqueParamNames = AValue then Exit;
2280 +  FreeHandle;
2281 +  FUniqueParamNames := AValue;
2282 + end;
2283 +
2284   procedure TIBSQL.DoBeforeDatabaseDisconnect(Sender: TObject);
2285   begin
2286    if (FHandle <> nil) then begin
# Line 2093 | Line 2320 | begin
2320                              @FHandle,
2321                              Database.SQLDialect,
2322                              FSQLParams.AsXSQLDA,
2323 <                            FSQLRecord.AsXSQLDA), False);
2324 <      if (fetch_res <> 0) and (fetch_res <> isc_deadlock) then
2323 >                            FSQLRecord.AsXSQLDA), True);
2324 > (*      if (fetch_res <> 0) and (fetch_res <> isc_deadlock) then
2325        begin
2326           { Sometimes a prepared stored procedure appears to get
2327             off sync on the server ....This code is meant to try
# Line 2109 | Line 2336 | begin
2336                              Database.SQLDialect,
2337                              FSQLParams.AsXSQLDA,
2338                              FSQLRecord.AsXSQLDA), True);
2339 <      end;
2339 >      end;  *)
2340      end
2341      else
2342        Call(isc_dsql_execute(StatusVector,
2343                             TRHandle,
2344                             @FHandle,
2345                             Database.SQLDialect,
2346 <                           FSQLParams.AsXSQLDA), True)
2346 >                           FSQLParams.AsXSQLDA), True);
2347    end;
2348    if not (csDesigning in ComponentState) then
2349      MonitorHook.SQLExecute(Self);
2350 +  FBase.DoAfterExecQuery(self);
2351 + //  writeln('Rows Affected = ',RowsAffected);
2352   end;
2353  
2354   function TIBSQL.GetEOF: Boolean;
# Line 2231 | Line 2460 | begin
2460         SQLUpdate, SQLDelete])) then
2461      result := ''
2462    else begin
2463 <    info_request := Char(isc_info_sql_get_plan);
2463 >    info_request := isc_info_sql_get_plan;
2464      Call(isc_dsql_sql_info(StatusVector, @FHandle, 2, @info_request,
2465                             SizeOf(result_buffer), result_buffer), True);
2466 <    if (result_buffer[0] <> Char(isc_info_sql_get_plan)) then
2466 >    if (result_buffer[0] <> isc_info_sql_get_plan) then
2467        IBError(ibxeUnknownError, [nil]);
2468      result_length := isc_vax_integer(@result_buffer[1], 2);
2469      SetString(result, nil, result_length);
# Line 2249 | Line 2478 | begin
2478    result := FRecordCount;
2479   end;
2480  
2481 < function TIBSQL.GetRowsAffected: integer;
2481 > function TIBSQL.GetRowsAffected: Integer;
2482   var
2254  result_buffer: array[0..1048] of Char;
2483    info_request: Char;
2484 +  RB: TResultBuffer;
2485   begin
2486    if not Prepared then
2487      result := -1
2488    else begin
2489 <    info_request := Char(isc_info_sql_records);
2490 <    if isc_dsql_sql_info(StatusVector, @FHandle, 1, @info_request,
2491 <                         SizeOf(result_buffer), result_buffer) > 0 then
2492 <      IBDatabaseError;
2493 <    if (result_buffer[0] <> Char(isc_info_sql_records)) then
2494 <      result := -1
2495 <    else
2496 <    case SQLType of
2497 <    SQLUpdate:   Result := isc_vax_integer(@result_buffer[6], 4);
2498 <    SQLDelete:   Result := isc_vax_integer(@result_buffer[13], 4);
2499 <    SQLInsert:   Result := isc_vax_integer(@result_buffer[27], 4);
2500 <    else         Result := -1 ;
2501 <    end ;
2489 >    RB := TResultBuffer.Create;
2490 >    try
2491 >      info_request := isc_info_sql_records;
2492 >      if isc_dsql_sql_info(StatusVector, @FHandle, 1, @info_request,
2493 >                         RB.Size, RB.buffer) > 0 then
2494 >        IBDatabaseError;
2495 >      case SQLType of
2496 >      SQLInsert, SQLUpdate: {Covers Insert or Update as well as individual update}
2497 >        Result := RB.GetValue(isc_info_sql_records, isc_info_req_insert_count)+
2498 >         RB.GetValue(isc_info_sql_records, isc_info_req_update_count);
2499 >      SQLDelete:
2500 >        Result := RB.GetValue(isc_info_sql_records, isc_info_req_delete_count);
2501 >      SQLExecProcedure:
2502 >        Result :=  RB.GetValue(isc_info_sql_records, isc_info_req_insert_count) +
2503 >                   RB.GetValue(isc_info_sql_records, isc_info_req_update_count) +
2504 >                   RB.GetValue(isc_info_sql_records, isc_info_req_delete_count);
2505 >      else
2506 >        Result := 0;
2507 >      end;
2508 >    finally
2509 >      RB.Free;
2510 >    end;
2511    end;
2512   end;
2513  
# Line 2300 | Line 2538 | var
2538    cCurChar, cNextChar, cQuoteChar: Char;
2539    sSQL, sProcessedSQL, sParamName: String;
2540    i, iLenSQL, iSQLPos: Integer;
2541 <  iCurState, iCurParamState: Integer;
2541 >  iCurState {$ifdef ALLOWDIALECT3PARAMNAMES}, iCurParamState {$endif}: Integer;
2542    iParamSuffix: Integer;
2543    slNames: TStrings;
2544  
# Line 2309 | Line 2547 | const
2547    CommentState = 1;
2548    QuoteState = 2;
2549    ParamState = 3;
2550 + {$ifdef ALLOWDIALECT3PARAMNAMES}
2551    ParamDefaultState = 0;
2552    ParamQuoteState = 1;
2553 +  {$endif}
2554  
2555    procedure AddToProcessedSQL(cChar: Char);
2556    begin
# Line 2319 | Line 2559 | const
2559    end;
2560  
2561   begin
2562 +  sParamName := '';
2563    slNames := TStringList.Create;
2564    try
2565      { Do some initializations of variables }
# Line 2330 | Line 2571 | begin
2571      i := 1;
2572      iSQLPos := 1;
2573      iCurState := DefaultState;
2574 +    {$ifdef ALLOWDIALECT3PARAMNAMES}
2575      iCurParamState := ParamDefaultState;
2576 +    {$endif}
2577      { Now, traverse through the SQL string, character by character,
2578       picking out the parameters and formatting correctly for InterBase }
2579      while (i <= iLenSQL) do begin
# Line 2381 | Line 2624 | begin
2624          ParamState:
2625          begin
2626            { collect the name of the parameter }
2627 +          {$ifdef ALLOWDIALECT3PARAMNAMES}
2628            if iCurParamState = ParamDefaultState then
2629            begin
2630              if cCurChar = '"' then
2631                iCurParamState := ParamQuoteState
2632 <            else if (cCurChar in ['A'..'Z', 'a'..'z', '0'..'9', '_', '$']) then
2632 >            else
2633 >            {$endif}
2634 >            if (cCurChar in ['A'..'Z', 'a'..'z', '0'..'9', '_', '$']) then
2635                  sParamName := sParamName + cCurChar
2636              else if FGenerateParamNames then
2637              begin
2638                sParamName := 'IBXParam' + IntToStr(iParamSuffix); {do not localize}
2639                Inc(iParamSuffix);
2640                iCurState := DefaultState;
2641 <              slNames.Add(sParamName);
2641 >              slNames.AddObject(sParamName,self); //Note local convention
2642 >                                                  //add pointer to self to mark entry
2643                sParamName := '';
2644              end
2645              else
2646                IBError(ibxeSQLParseError, [SParamNameExpected]);
2647 +          {$ifdef ALLOWDIALECT3PARAMNAMES}
2648            end
2649            else begin
2650              { determine if Quoted parameter name is finished }
# Line 2411 | Line 2659 | begin
2659              else
2660                sParamName := sParamName + cCurChar
2661            end;
2662 +          {$endif}
2663            { determine if the unquoted parameter name is finished }
2664 <          if (iCurParamState <> ParamQuoteState) and
2664 >          if {$ifdef ALLOWDIALECT3PARAMNAMES}(iCurParamState <> ParamQuoteState) and {$endif}
2665              (iCurState <> DefaultState) then
2666            begin
2667              if not (cNextChar in ['A'..'Z', 'a'..'z',
# Line 2432 | Line 2681 | begin
2681      AddToProcessedSQL(#0);
2682      FSQLParams.Count := slNames.Count;
2683      for i := 0 to slNames.Count - 1 do
2684 <      FSQLParams.AddName(slNames[i], i);
2684 >      FSQLParams.SetParamName(slNames[i], i,FUniqueParamNames or (slNames.Objects[i] <> nil));
2685      FProcessedSQL.Text := sProcessedSQL;
2686    finally
2687      slNames.Free;
# Line 2471 | Line 2720 | begin
2720      { After preparing the statement, query the stmt type and possibly
2721        create a FSQLRecord "holder" }
2722      { Get the type of the statement }
2723 <    type_item := Char(isc_info_sql_stmt_type);
2723 >    type_item := isc_info_sql_stmt_type;
2724      Call(isc_dsql_sql_info(StatusVector, @FHandle, 1, @type_item,
2725                           SizeOf(res_buffer), res_buffer), True);
2726 <    if (res_buffer[0] <> Char(isc_info_sql_stmt_type)) then
2726 >    if (res_buffer[0] <> isc_info_sql_stmt_type) then
2727        IBError(ibxeUnknownError, [nil]);
2728      stmt_len := isc_vax_integer(@res_buffer[1], 2);
2729      FSQLType := TIBSQLTypes(isc_vax_integer(@res_buffer[3], stmt_len));
# Line 2519 | Line 2768 | begin
2768      on E: Exception do begin
2769        if (FHandle <> nil) then
2770          FreeHandle;
2771 <      raise;
2771 >      if E is EIBInterBaseError then
2772 >        raise EIBInterBaseError.Create(EIBInterBaseError(E).SQLCode,
2773 >                                       EIBInterBaseError(E).IBErrorCode,
2774 >                                       EIBInterBaseError(E).Message +
2775 >                                       sSQLErrorSeparator + FProcessedSQL.Text)
2776 >      else
2777 >        raise;
2778      end;
2779    end;
2780   end;
# Line 2557 | Line 2812 | begin
2812    if FHandle <> nil then FreeHandle;
2813   end;
2814  
2815 < procedure TIBSQL.BeforeTransactionEnd(Sender: TObject);
2815 > procedure TIBSQL.BeforeTransactionEnd(Sender: TObject;
2816 >  Action: TTransactionAction);
2817   begin
2818    if (FOpen) then
2819      Close;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines