44 |
|
Classes, SysUtils, IB, FBClientAPI, FBSQLData, FBOutputBlock, FBActivityMonitor, |
45 |
|
FBTransaction; |
46 |
|
|
47 |
+ |
const |
48 |
+ |
DefaultBatchRowLimit = 1000; |
49 |
+ |
|
50 |
|
type |
51 |
|
TPerfStatistics = array[psCurrentMemory..psFetches] of Int64; |
52 |
|
|
59 |
|
protected |
60 |
|
FTransactionIntf: ITransaction; |
61 |
|
FExecTransactionIntf: ITransaction; |
62 |
+ |
FStaleReferenceChecks: boolean; |
63 |
|
FSQLStatementType: TIBSQLStatementTypes; { Select, update, delete, insert, create, alter, etc...} |
64 |
|
FSQLDialect: integer; |
65 |
|
FOpen: boolean; |
78 |
|
FBeforeStats: TPerfStatistics; |
79 |
|
FAfterStats: TPerfStatistics; |
80 |
|
FCaseSensitiveParams: boolean; |
81 |
+ |
FBatchRowLimit: integer; |
82 |
+ |
procedure CheckChangeBatchRowLimit; virtual; |
83 |
|
procedure CheckHandle; virtual; abstract; |
84 |
|
procedure CheckTransaction(aTransaction: ITransaction); |
85 |
|
procedure GetDsqlInfo(info_request: byte; buffer: ISQLInfoResults); overload; virtual; abstract; |
86 |
< |
procedure InternalPrepare; virtual; abstract; |
87 |
< |
function InternalExecute(aTransaction: ITransaction): IResults; virtual; abstract; |
88 |
< |
function InternalOpenCursor(aTransaction: ITransaction): IResultSet; virtual; abstract; |
86 |
> |
procedure InternalPrepare(CursorName: AnsiString=''); virtual; abstract; |
87 |
> |
function InternalExecute(Transaction: ITransaction): IResults; virtual; abstract; |
88 |
> |
function InternalOpenCursor(aTransaction: ITransaction; Scrollable: boolean): IResultSet; virtual; abstract; |
89 |
|
procedure ProcessSQL(sql: AnsiString; GenerateParamNames: boolean; var processedSQL: AnsiString); virtual; abstract; |
90 |
|
procedure FreeHandle; virtual; abstract; |
91 |
|
procedure InternalClose(Force: boolean); virtual; abstract; |
108 |
|
function GetRowsAffected(var SelectCount, InsertCount, UpdateCount, |
109 |
|
DeleteCount: integer): boolean; |
110 |
|
function GetSQLStatementType: TIBSQLStatementTypes; |
111 |
+ |
function GetSQLStatementTypeName: AnsiString; |
112 |
|
function GetSQLText: AnsiString; |
113 |
|
function GetProcessedSQLText: AnsiString; |
114 |
|
function GetSQLDialect: integer; |
115 |
|
|
116 |
|
{GetDSQLInfo only supports isc_info_sql_stmt_type, isc_info_sql_get_plan, isc_info_sql_records} |
117 |
< |
procedure Prepare(aTransaction: ITransaction=nil); virtual; |
117 |
> |
procedure Prepare(aTransaction: ITransaction=nil); overload; |
118 |
> |
procedure Prepare(CursorName: AnsiString; aTransaction: ITransaction=nil); overload; virtual; |
119 |
|
function Execute(aTransaction: ITransaction=nil): IResults; |
120 |
< |
function OpenCursor(aTransaction: ITransaction=nil): IResultSet; |
120 |
> |
function OpenCursor(aTransaction: ITransaction=nil): IResultSet; overload; |
121 |
> |
function OpenCursor(Scrollable: boolean; aTransaction: ITransaction=nil): IResultSet; overload; |
122 |
|
function CreateBlob(paramName: AnsiString): IBlob; overload; |
123 |
|
function CreateBlob(index: integer): IBlob; overload; |
124 |
|
function CreateBlob(column: TColumnMetaData): IBlob; overload; virtual; abstract; |
131 |
|
procedure SetRetainInterfaces(aValue: boolean); virtual; |
132 |
|
procedure EnableStatistics(aValue: boolean); |
133 |
|
function GetPerfStatistics(var stats: TPerfCounters): boolean; |
134 |
+ |
function IsInBatchMode: boolean; virtual; |
135 |
+ |
function HasBatchMode: boolean; virtual; |
136 |
+ |
public |
137 |
+ |
{IBatch support} |
138 |
+ |
procedure AddToBatch; virtual; |
139 |
+ |
function ExecuteBatch(aTransaction: ITransaction): IBatchCompletion; virtual; |
140 |
+ |
procedure CancelBatch; virtual; |
141 |
+ |
function GetBatchCompletion: IBatchCompletion; virtual; |
142 |
+ |
function GetBatchRowLimit: integer; |
143 |
+ |
procedure SetBatchRowLimit(aLimit: integer); |
144 |
+ |
{Stale Reference Check} |
145 |
+ |
procedure SetStaleReferenceChecks(Enable:boolean); {default true} |
146 |
+ |
function GetStaleReferenceChecks: boolean; |
147 |
+ |
public |
148 |
|
property ChangeSeqNo: integer read FChangeSeqNo; |
149 |
|
property SQLParams: ISQLParams read GetSQLParams; |
150 |
|
property SQLStatementType: TIBSQLStatementTypes read GetSQLStatementType; |
156 |
|
|
157 |
|
{ TFBStatement } |
158 |
|
|
159 |
+ |
procedure TFBStatement.CheckChangeBatchRowLimit; |
160 |
+ |
begin |
161 |
+ |
//Do Nothing |
162 |
+ |
end; |
163 |
+ |
|
164 |
|
procedure TFBStatement.CheckTransaction(aTransaction: ITransaction); |
165 |
|
begin |
166 |
|
if (aTransaction = nil) then |
184 |
|
FFirebirdClientAPI := Attachment.getFirebirdAPI as TFBClientAPI; |
185 |
|
FSQLDialect := SQLDialect; |
186 |
|
FSQL := sql; |
187 |
+ |
FBatchRowLimit := DefaultBatchRowLimit; |
188 |
+ |
FStaleReferenceChecks := true; |
189 |
|
end; |
190 |
|
|
191 |
|
constructor TFBStatement.CreateWithParameterNames(Attachment: IAttachment; |
261 |
|
Result := FSQLStatementType; |
262 |
|
end; |
263 |
|
|
264 |
+ |
function TFBStatement.GetSQLStatementTypeName: AnsiString; |
265 |
+ |
begin |
266 |
+ |
case FSQLStatementType of |
267 |
+ |
SQLUnknown: Result := 'SQL_Unknown'; |
268 |
+ |
SQLSelect: Result := 'SQL_Select'; |
269 |
+ |
SQLInsert: Result := 'SQL_Insert'; |
270 |
+ |
SQLUpdate: Result := 'SQL_Update'; |
271 |
+ |
SQLDelete: Result := 'SQL_Delete'; |
272 |
+ |
SQLDDL: Result := 'SQL_DDL'; |
273 |
+ |
SQLGetSegment: Result := 'SQL_GetSegment'; |
274 |
+ |
SQLPutSegment: Result := 'SQL_PutSegment'; |
275 |
+ |
SQLExecProcedure: Result := 'SQL_ExecProcedure'; |
276 |
+ |
SQLStartTransaction: Result := 'SQL_StartTransaction'; |
277 |
+ |
SQLCommit: Result := 'SQL_Commit'; |
278 |
+ |
SQLRollback: Result := 'SQL_Rollback'; |
279 |
+ |
SQLSelectForUpdate: Result := 'SQL_SelectForUpdate'; |
280 |
+ |
SQLSetGenerator: Result := 'SQL_SetGenerator'; |
281 |
+ |
SQLSavePoint: Result := 'SQL_SavePoint'; |
282 |
+ |
end; |
283 |
+ |
end; |
284 |
+ |
|
285 |
|
function TFBStatement.GetSQLText: AnsiString; |
286 |
|
begin |
287 |
|
Result := FSQL; |
301 |
|
|
302 |
|
procedure TFBStatement.Prepare(aTransaction: ITransaction); |
303 |
|
begin |
304 |
+ |
Prepare('',aTransaction); |
305 |
+ |
end; |
306 |
+ |
|
307 |
+ |
procedure TFBStatement.Prepare(CursorName: AnsiString; |
308 |
+ |
aTransaction: ITransaction); |
309 |
+ |
begin |
310 |
|
if FPrepared then FreeHandle; |
311 |
|
if aTransaction <> nil then |
312 |
|
begin |
314 |
|
FTransactionIntf := aTransaction; |
315 |
|
AddMonitor(FTransactionIntf as TFBTransaction); |
316 |
|
end; |
317 |
< |
InternalPrepare; |
317 |
> |
InternalPrepare(CursorName); |
318 |
|
end; |
319 |
|
|
320 |
|
function TFBStatement.Execute(aTransaction: ITransaction): IResults; |
325 |
|
Result := InternalExecute(aTransaction); |
326 |
|
end; |
327 |
|
|
328 |
+ |
procedure TFBStatement.AddToBatch; |
329 |
+ |
begin |
330 |
+ |
IBError(ibxeBatchModeNotSupported,[]); |
331 |
+ |
end; |
332 |
+ |
|
333 |
+ |
function TFBStatement.ExecuteBatch(aTransaction: ITransaction |
334 |
+ |
): IBatchCompletion; |
335 |
+ |
begin |
336 |
+ |
IBError(ibxeBatchModeNotSupported,[]); |
337 |
+ |
end; |
338 |
+ |
|
339 |
+ |
procedure TFBStatement.CancelBatch; |
340 |
+ |
begin |
341 |
+ |
IBError(ibxeBatchModeNotSupported,[]); |
342 |
+ |
end; |
343 |
+ |
|
344 |
+ |
function TFBStatement.GetBatchCompletion: IBatchCompletion; |
345 |
+ |
begin |
346 |
+ |
IBError(ibxeBatchModeNotSupported,[]); |
347 |
+ |
end; |
348 |
+ |
|
349 |
+ |
function TFBStatement.GetBatchRowLimit: integer; |
350 |
+ |
begin |
351 |
+ |
Result := FBatchRowLimit; |
352 |
+ |
end; |
353 |
+ |
|
354 |
+ |
procedure TFBStatement.SetBatchRowLimit(aLimit: integer); |
355 |
+ |
begin |
356 |
+ |
CheckChangeBatchRowLimit; |
357 |
+ |
FBatchRowLimit := aLimit; |
358 |
+ |
end; |
359 |
+ |
|
360 |
+ |
procedure TFBStatement.SetStaleReferenceChecks(Enable: boolean); |
361 |
+ |
begin |
362 |
+ |
FStaleReferenceChecks := Enable; |
363 |
+ |
end; |
364 |
+ |
|
365 |
+ |
function TFBStatement.GetStaleReferenceChecks: boolean; |
366 |
+ |
begin |
367 |
+ |
Result := FStaleReferenceChecks; |
368 |
+ |
end; |
369 |
+ |
|
370 |
|
function TFBStatement.OpenCursor(aTransaction: ITransaction): IResultSet; |
371 |
|
begin |
372 |
+ |
Result := OpenCursor(false,aTransaction); |
373 |
+ |
end; |
374 |
+ |
|
375 |
+ |
function TFBStatement.OpenCursor(Scrollable: boolean; aTransaction: ITransaction |
376 |
+ |
): IResultSet; |
377 |
+ |
begin |
378 |
|
Close; |
379 |
|
if aTransaction = nil then |
380 |
< |
Result := InternalOpenCursor(FTransactionIntf) |
380 |
> |
Result := InternalOpenCursor(FTransactionIntf,Scrollable) |
381 |
|
else |
382 |
< |
Result := InternalOpenCursor(aTransaction); |
382 |
> |
Result := InternalOpenCursor(aTransaction,Scrollable); |
383 |
|
end; |
384 |
|
|
385 |
|
function TFBStatement.CreateBlob(paramName: AnsiString): IBlob; |
461 |
|
end; |
462 |
|
end; |
463 |
|
|
464 |
+ |
function TFBStatement.IsInBatchMode: boolean; |
465 |
+ |
begin |
466 |
+ |
Result := false; |
467 |
+ |
end; |
468 |
+ |
|
469 |
+ |
function TFBStatement.HasBatchMode: boolean; |
470 |
+ |
begin |
471 |
+ |
Result := false; |
472 |
+ |
end; |
473 |
+ |
|
474 |
|
end. |
475 |
|
|