41 |
|
Classes, SysUtils, {$IFDEF WINDOWS} windows, {$ENDIF} IB, FBParamBlock, |
42 |
|
FBActivityMonitor, FBClientAPI; |
43 |
|
|
44 |
+ |
const |
45 |
+ |
DefaultMaxInlineBlobLimit = 8192; |
46 |
+ |
|
47 |
|
type |
48 |
|
TCharsetMap = record |
49 |
|
CharsetID: integer; |
63 |
|
FODSMinorVersion: integer; |
64 |
|
FUserCharSetMap: array of TCharSetMap; |
65 |
|
FSecDatabase: AnsiString; |
66 |
+ |
FInlineBlobLimit: integer; |
67 |
|
protected |
68 |
|
FDatabaseName: AnsiString; |
69 |
|
FRaiseExceptionOnConnectError: boolean; |
83 |
|
procedure EndAllTransactions; |
84 |
|
procedure DPBFromCreateSQL(CreateSQL: AnsiString); |
85 |
|
procedure SetParameters(SQLParams: ISQLParams; params: array of const); |
86 |
+ |
procedure UseServerICUChanged; virtual; |
87 |
|
public |
88 |
|
destructor Destroy; override; |
89 |
|
function getFirebirdAPI: IFirebirdAPI; |
128 |
|
function GetEventHandler(Event: AnsiString): IEvents; overload; |
129 |
|
|
130 |
|
function GetSQLDialect: integer; |
131 |
+ |
function CreateBlob(transaction: ITransaction; RelationName, ColumnName: AnsiString; BPB: IBPB=nil): IBlob; overload; |
132 |
+ |
function CreateBlob(transaction: ITransaction; BlobMetaData: IBlobMetaData; BPB: IBPB=nil): IBlob; overload; virtual; abstract; |
133 |
|
function OpenBlob(transaction: ITransaction; BlobMetaData: IBlobMetaData; BlobID: TISC_QUAD; BPB: IBPB=nil): IBlob; overload; virtual; abstract; |
134 |
+ |
function OpenBlob(transaction: ITransaction; RelationName, ColumnName: AnsiString; BlobID: TISC_QUAD; BPB: IBPB=nil): IBlob; overload; |
135 |
|
function OpenBlob(transaction: ITransaction; Field: ISQLData; BPB: IBPB=nil): IBlob; overload; |
136 |
+ |
function CreateArray(transaction: ITransaction; RelationName, ColumnName: AnsiString |
137 |
+ |
): IArray; overload; |
138 |
+ |
function CreateArray(transaction: ITransaction; ArrayMetaData: IArrayMetaData): IArray; overload; virtual; abstract; |
139 |
+ |
function OpenArray(transaction: ITransaction; RelationName, ColumnName: AnsiString; ArrayID: TISC_QUAD): IArray; overload; |
140 |
+ |
function OpenArray(transaction: ITransaction; ArrayMetaData: IArrayMetaData; ArrayID: TISC_QUAD): IArray; overload; virtual; abstract; |
141 |
|
property SQLDialect: integer read FSQLDialect; |
142 |
|
property DPB: IDPB read FDPB; |
143 |
< |
public |
144 |
< |
function GetDBInformation(Requests: array of byte): IDBInformation; overload; |
145 |
< |
function GetDBInformation(Request: byte): IDBInformation; overload; |
146 |
< |
function GetDBInformation(Requests: IDIRB): IDBInformation; overload; |
147 |
< |
function GetConnectString: AnsiString; |
148 |
< |
function GetRemoteProtocol: AnsiString; |
149 |
< |
function GetAuthenticationMethod: AnsiString; |
150 |
< |
function GetSecurityDatabase: AnsiString; |
151 |
< |
function GetODSMajorVersion: integer; |
152 |
< |
function GetODSMinorVersion: integer; |
153 |
< |
{Character Sets} |
154 |
< |
function HasDefaultCharSet: boolean; |
155 |
< |
function GetDefaultCharSetID: integer; |
156 |
< |
function GetCharsetName(CharSetID: integer): AnsiString; |
157 |
< |
function CharSetID2CodePage(CharSetID: integer; var CodePage: TSystemCodePage): boolean; |
158 |
< |
function CodePage2CharSetID(CodePage: TSystemCodePage; var CharSetID: integer): boolean; |
159 |
< |
function CharSetName2CharSetID(CharSetName: AnsiString; var CharSetID: integer): boolean; |
160 |
< |
function CharSetWidth(CharSetID: integer; var Width: integer): boolean; |
161 |
< |
procedure RegisterCharSet(CharSetName: AnsiString; CodePage: TSystemCodePage; |
162 |
< |
AllowReverseLookup:boolean; out CharSetID: integer); |
163 |
< |
property CharSetID: integer read FCharSetID; |
164 |
< |
property CodePage: TSystemCodePage read FCodePage; |
143 |
> |
public |
144 |
> |
function GetDBInformation(Requests: array of byte): IDBInformation; overload; |
145 |
> |
function GetDBInformation(Request: byte): IDBInformation; overload; |
146 |
> |
function GetDBInformation(Requests: IDIRB): IDBInformation; overload; |
147 |
> |
function GetConnectString: AnsiString; |
148 |
> |
function GetRemoteProtocol: AnsiString; |
149 |
> |
function GetAuthenticationMethod: AnsiString; |
150 |
> |
function GetSecurityDatabase: AnsiString; |
151 |
> |
function GetODSMajorVersion: integer; |
152 |
> |
function GetODSMinorVersion: integer; |
153 |
> |
function HasDecFloatSupport: boolean; virtual; |
154 |
> |
function GetInlineBlobLimit: integer; |
155 |
> |
procedure SetInlineBlobLimit(limit: integer); |
156 |
> |
function HasBatchMode: boolean; virtual; |
157 |
> |
|
158 |
> |
public |
159 |
> |
{Character Sets} |
160 |
> |
function HasDefaultCharSet: boolean; |
161 |
> |
function GetDefaultCharSetID: integer; |
162 |
> |
function GetCharsetName(CharSetID: integer): AnsiString; |
163 |
> |
function CharSetID2CodePage(CharSetID: integer; var CodePage: TSystemCodePage): boolean; |
164 |
> |
function CodePage2CharSetID(CodePage: TSystemCodePage; var CharSetID: integer): boolean; |
165 |
> |
function CharSetName2CharSetID(CharSetName: AnsiString; var CharSetID: integer): boolean; |
166 |
> |
function CharSetWidth(CharSetID: integer; var Width: integer): boolean; |
167 |
> |
procedure RegisterCharSet(CharSetName: AnsiString; CodePage: TSystemCodePage; |
168 |
> |
AllowReverseLookup:boolean; out CharSetID: integer); |
169 |
> |
function GetBlobMetaData(Transaction: ITransaction; tableName, columnName: AnsiString): IBlobMetaData; virtual; abstract; |
170 |
> |
function GetArrayMetaData(Transaction: ITransaction; tableName, columnName: AnsiString): IArrayMetaData; virtual; abstract; |
171 |
> |
property CharSetID: integer read FCharSetID; |
172 |
> |
property CodePage: TSystemCodePage read FCodePage; |
173 |
> |
|
174 |
> |
public |
175 |
> |
{Time Zone Support} |
176 |
> |
function GetTimeZoneServices: ITimeZoneServices; virtual; |
177 |
> |
function HasTimeZoneSupport: boolean; virtual; |
178 |
> |
|
179 |
> |
end; |
180 |
> |
|
181 |
> |
{ TDPBItem } |
182 |
> |
|
183 |
> |
TDPBItem = class(TParamBlockItem,IDPBItem) |
184 |
> |
public |
185 |
> |
function getParamTypeName: AnsiString; override; |
186 |
> |
end; |
187 |
> |
|
188 |
> |
{ TDPB } |
189 |
> |
|
190 |
> |
TDPB = class (TCustomParamBlock<TDPBItem,IDPBItem>, IDPB) |
191 |
> |
protected |
192 |
> |
function LookupItemType(ParamTypeName: AnsiString): byte; override; |
193 |
> |
public |
194 |
> |
constructor Create(api: TFBClientAPI); |
195 |
> |
function GetParamTypeName(ParamType: byte): Ansistring; |
196 |
> |
{$IFDEF FPC} |
197 |
> |
function IDPB.GetDPBParamTypeName = GetParamTypeName; |
198 |
> |
{$ELSE} |
199 |
> |
function GetDPBParamTypeName(ParamType: byte): Ansistring; |
200 |
> |
{$ENDIF} |
201 |
|
end; |
202 |
|
|
203 |
|
implementation |
278 |
|
(CharsetID: 69; CharSetName: 'GB18030'; CharSetWidth: 4; CodePage: 54936; AllowReverseLookup: true) |
279 |
|
); |
280 |
|
|
281 |
+ |
const |
282 |
+ |
isc_dpb_last_dpb_constant = isc_dpb_decfloat_traps; |
283 |
+ |
|
284 |
+ |
DPBConstantNames: array[1..isc_dpb_last_dpb_constant] of string = ( |
285 |
+ |
'cdd_pathname', |
286 |
+ |
'allocation', |
287 |
+ |
'journal', |
288 |
+ |
'page_size', |
289 |
+ |
'num_buffers', |
290 |
+ |
'buffer_length', |
291 |
+ |
'debug', |
292 |
+ |
'garbage_collect', |
293 |
+ |
'verify', |
294 |
+ |
'sweep', |
295 |
+ |
'enable_journal', |
296 |
+ |
'disable_journal', |
297 |
+ |
'dbkey_scope', |
298 |
+ |
'number_of_users', |
299 |
+ |
'trace', |
300 |
+ |
'no_garbage_collect', |
301 |
+ |
'damaged', |
302 |
+ |
'license', |
303 |
+ |
'sys_user_name', |
304 |
+ |
'encrypt_key', |
305 |
+ |
'activate_shadow', |
306 |
+ |
'sweep_interval', |
307 |
+ |
'delete_shadow', |
308 |
+ |
'force_write', |
309 |
+ |
'begin_log', |
310 |
+ |
'quit_log', |
311 |
+ |
'no_reserve', |
312 |
+ |
'user_name', |
313 |
+ |
'password', |
314 |
+ |
'password_enc', |
315 |
+ |
'sys_user_name_enc', |
316 |
+ |
'interp', |
317 |
+ |
'online_dump', |
318 |
+ |
'old_file_size', |
319 |
+ |
'old_num_files', |
320 |
+ |
'old_file', |
321 |
+ |
'old_start_page', |
322 |
+ |
'old_start_seqno', |
323 |
+ |
'old_start_file', |
324 |
+ |
'drop_walfile', |
325 |
+ |
'old_dump_id', |
326 |
+ |
'wal_backup_dir', |
327 |
+ |
'wal_chkptlen', |
328 |
+ |
'wal_numbufs', |
329 |
+ |
'wal_bufsize', |
330 |
+ |
'wal_grp_cmt_wait', |
331 |
+ |
'lc_messages', |
332 |
+ |
'lc_ctype', |
333 |
+ |
'cache_manager', |
334 |
+ |
'shutdown', |
335 |
+ |
'online', |
336 |
+ |
'shutdown_delay', |
337 |
+ |
'reserved', |
338 |
+ |
'overwrite', |
339 |
+ |
'sec_attach', |
340 |
+ |
'disable_wal', |
341 |
+ |
'connect_timeout', |
342 |
+ |
'dummy_packet_interval', |
343 |
+ |
'gbak_attach', |
344 |
+ |
'sql_role_name', |
345 |
+ |
'set_page_buffers', |
346 |
+ |
'working_directory', |
347 |
+ |
'sql_dialect', |
348 |
+ |
'set_db_readonly', |
349 |
+ |
'set_db_sql_dialect', |
350 |
+ |
'gfix_attach', |
351 |
+ |
'gstat_attach', |
352 |
+ |
'set_db_charset', |
353 |
+ |
'gsec_attach', |
354 |
+ |
'address_path' , |
355 |
+ |
'process_id', |
356 |
+ |
'no_db_triggers', |
357 |
+ |
'trusted_auth', |
358 |
+ |
'process_name', |
359 |
+ |
'trusted_role', |
360 |
+ |
'org_filename', |
361 |
+ |
'utf8_ilename', |
362 |
+ |
'ext_call_depth', |
363 |
+ |
'auth_block', |
364 |
+ |
'client_version', |
365 |
+ |
'remote_protocol', |
366 |
+ |
'host_name', |
367 |
+ |
'os_user', |
368 |
+ |
'specific_auth_data', |
369 |
+ |
'auth_plugin_list', |
370 |
+ |
'auth_plugin_name', |
371 |
+ |
'config', |
372 |
+ |
'nolinger', |
373 |
+ |
'reset_icu', |
374 |
+ |
'map_attach', |
375 |
+ |
'session_time_zone', |
376 |
+ |
'set_db_replica', |
377 |
+ |
'set_bind', |
378 |
+ |
'decfloat_round', |
379 |
+ |
'decfloat_traps' |
380 |
+ |
); |
381 |
|
|
382 |
|
|
383 |
|
|
412 |
|
begin |
413 |
|
Stmt := Prepare(StartTransaction([isc_tpb_read,isc_tpb_nowait,isc_tpb_concurrency],taCommit), |
414 |
|
'Select MON$CHARACTER_SET_ID, MON$REMOTE_PROTOCOL, MON$AUTH_METHOD, MON$SEC_DATABASE From MON$ATTACHMENTS, MON$DATABASE '+ |
415 |
< |
'Where MON$ATTACHMENT_ID = CURRENT_CONNECTION'); |
415 |
> |
'Where MON$ATTACHMENT_ID = CURRENT_CONNECTION '); |
416 |
|
ResultSet := Stmt.OpenCursor; |
417 |
|
if ResultSet.FetchNext then |
418 |
|
begin |
463 |
|
FRaiseExceptionOnConnectError := RaiseExceptionOnConnectError; |
464 |
|
FODSMajorVersion := 0; |
465 |
|
FODSMinorVersion := 0; |
466 |
+ |
FInlineBlobLimit := DefaultMaxInlineBlobLimit; |
467 |
|
end; |
468 |
|
|
469 |
|
function TFBAttachment.GenerateCreateDatabaseSQL(DatabaseName: AnsiString; aDPB: IDPB): AnsiString; |
597 |
|
end; |
598 |
|
end; |
599 |
|
|
600 |
+ |
procedure TFBAttachment.UseServerICUChanged; |
601 |
+ |
begin |
602 |
+ |
// Do nothing by default |
603 |
+ |
end; |
604 |
+ |
|
605 |
|
destructor TFBAttachment.Destroy; |
606 |
|
begin |
607 |
|
Disconnect(true); |
770 |
|
Result := FSQLDialect; |
771 |
|
end; |
772 |
|
|
773 |
+ |
function TFBAttachment.CreateBlob(transaction: ITransaction; RelationName, |
774 |
+ |
ColumnName: AnsiString; BPB: IBPB): IBlob; |
775 |
+ |
begin |
776 |
+ |
Result := CreateBlob(transaction,GetBlobMetaData(Transaction,RelationName,ColumnName),BPB); |
777 |
+ |
end; |
778 |
+ |
|
779 |
+ |
function TFBAttachment.OpenBlob(transaction: ITransaction; RelationName, |
780 |
+ |
ColumnName: AnsiString; BlobID: TISC_QUAD; BPB: IBPB): IBlob; |
781 |
+ |
begin |
782 |
+ |
Result := OpenBlob(Transaction, |
783 |
+ |
GetBlobMetaData(Transaction,RelationName,ColumnName), |
784 |
+ |
BlobID,BPB); |
785 |
+ |
end; |
786 |
+ |
|
787 |
|
function TFBAttachment.OpenBlob(transaction: ITransaction; Field: ISQLData; |
788 |
|
BPB: IBPB): IBlob; |
789 |
|
begin |
790 |
|
Result := OpenBlob(Transaction,Field.GetBlobMetadata, Field.AsQuad,BPB); |
791 |
|
end; |
792 |
|
|
793 |
+ |
function TFBAttachment.CreateArray(transaction: ITransaction; RelationName, |
794 |
+ |
ColumnName: AnsiString): IArray; |
795 |
+ |
begin |
796 |
+ |
Result := CreateArray(transaction,GetArrayMetaData(transaction,RelationName,ColumnName)); |
797 |
+ |
end; |
798 |
+ |
|
799 |
+ |
function TFBAttachment.OpenArray(transaction: ITransaction; RelationName, |
800 |
+ |
ColumnName: AnsiString; ArrayID: TISC_QUAD): IArray; |
801 |
+ |
begin |
802 |
+ |
Result := OpenArray(transaction, |
803 |
+ |
GetArrayMetaData(transaction,RelationName,ColumnName),ArrayID); |
804 |
+ |
end; |
805 |
+ |
|
806 |
|
function TFBAttachment.GetDBInformation(Requests: array of byte |
807 |
|
): IDBInformation; |
808 |
|
var ReqBuffer: PByte; |
869 |
|
Result := FODSMinorVersion; |
870 |
|
end; |
871 |
|
|
872 |
+ |
function TFBAttachment.HasDecFloatSupport: boolean; |
873 |
+ |
begin |
874 |
+ |
Result := false; |
875 |
+ |
end; |
876 |
+ |
|
877 |
+ |
function TFBAttachment.GetInlineBlobLimit: integer; |
878 |
+ |
begin |
879 |
+ |
Result := FInlineBlobLimit; |
880 |
+ |
end; |
881 |
+ |
|
882 |
+ |
procedure TFBAttachment.SetInlineBlobLimit(limit: integer); |
883 |
+ |
begin |
884 |
+ |
if limit > 32*1024 then |
885 |
+ |
FInlineBlobLimit := 32*1024 |
886 |
+ |
else |
887 |
+ |
FInlineBlobLimit := limit; |
888 |
+ |
end; |
889 |
+ |
|
890 |
+ |
function TFBAttachment.HasBatchMode: boolean; |
891 |
+ |
begin |
892 |
+ |
Result := false; |
893 |
+ |
end; |
894 |
+ |
|
895 |
|
function TFBAttachment.HasDefaultCharSet: boolean; |
896 |
|
begin |
897 |
|
Result := FHasDefaultCharSet |
1036 |
|
CharSetID := CharSets[0].AsInteger; |
1037 |
|
end; |
1038 |
|
|
1039 |
+ |
function TFBAttachment.GetTimeZoneServices: ITimeZoneServices; |
1040 |
+ |
begin |
1041 |
+ |
IBError(ibxeNotSupported,[]); |
1042 |
+ |
end; |
1043 |
+ |
|
1044 |
+ |
function TFBAttachment.HasTimeZoneSupport: boolean; |
1045 |
+ |
begin |
1046 |
+ |
Result := false; |
1047 |
+ |
end; |
1048 |
+ |
|
1049 |
+ |
{ TDPBItem } |
1050 |
+ |
|
1051 |
+ |
function TDPBItem.getParamTypeName: AnsiString; |
1052 |
+ |
begin |
1053 |
+ |
Result := DPBPrefix + DPBConstantNames[getParamType]; |
1054 |
+ |
end; |
1055 |
+ |
|
1056 |
+ |
{ TDPB } |
1057 |
+ |
|
1058 |
+ |
constructor TDPB.Create(api: TFBClientAPI); |
1059 |
+ |
begin |
1060 |
+ |
inherited Create(api); |
1061 |
+ |
FDataLength := 1; |
1062 |
+ |
FBuffer^ := isc_dpb_version1; |
1063 |
+ |
end; |
1064 |
+ |
|
1065 |
+ |
function TDPB.GetParamTypeName(ParamType: byte): Ansistring; |
1066 |
+ |
begin |
1067 |
+ |
if ParamType <= isc_dpb_last_dpb_constant then |
1068 |
+ |
Result := DPBConstantNames[ParamType] |
1069 |
+ |
else |
1070 |
+ |
Result := ''; |
1071 |
+ |
end; |
1072 |
+ |
|
1073 |
+ |
{$IFNDEF FPC} |
1074 |
+ |
function TDPB.GetDPBParamTypeName(ParamType: byte): Ansistring; |
1075 |
+ |
begin |
1076 |
+ |
Result := GetParamTypeName(ParamType); |
1077 |
+ |
end; |
1078 |
+ |
{$ENDIF} |
1079 |
+ |
|
1080 |
+ |
function TDPB.LookupItemType(ParamTypeName: AnsiString): byte; |
1081 |
+ |
var i: byte; |
1082 |
+ |
begin |
1083 |
+ |
Result := 0; |
1084 |
+ |
ParamTypeName := LowerCase(ParamTypeName); |
1085 |
+ |
if (Pos(DPBPrefix, ParamTypeName) = 1) then |
1086 |
+ |
Delete(ParamTypeName, 1, Length(DPBPrefix)); |
1087 |
+ |
|
1088 |
+ |
for i := 1 to isc_dpb_last_dpb_constant do |
1089 |
+ |
if (ParamTypeName = DPBConstantNames[i]) then |
1090 |
+ |
begin |
1091 |
+ |
Result := i; |
1092 |
+ |
break; |
1093 |
+ |
end; |
1094 |
+ |
end; |
1095 |
+ |
|
1096 |
|
end. |
1097 |
|
|