1 |
tony |
45 |
(* |
2 |
|
|
* Firebird Interface (fbintf). The fbintf components provide a set of |
3 |
|
|
* Pascal language bindings for the Firebird API. |
4 |
|
|
* |
5 |
|
|
* The contents of this file are subject to the Initial Developer's |
6 |
|
|
* Public License Version 1.0 (the "License"); you may not use this |
7 |
|
|
* file except in compliance with the License. You may obtain a copy |
8 |
|
|
* of the License here: |
9 |
|
|
* |
10 |
|
|
* http://www.firebirdsql.org/index.php?op=doc&id=idpl |
11 |
|
|
* |
12 |
|
|
* Software distributed under the License is distributed on an "AS |
13 |
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
14 |
|
|
* implied. See the License for the specific language governing rights |
15 |
|
|
* and limitations under the License. |
16 |
|
|
* |
17 |
|
|
* The Initial Developer of the Original Code is Tony Whyman. |
18 |
|
|
* |
19 |
|
|
* The Original Code is (C) 2016 Tony Whyman, MWA Software |
20 |
|
|
* (http://www.mwasoftware.co.uk). |
21 |
|
|
* |
22 |
|
|
* All Rights Reserved. |
23 |
|
|
* |
24 |
|
|
* Contributor(s): ______________________________________. |
25 |
|
|
* |
26 |
|
|
*) |
27 |
|
|
unit FB25Array; |
28 |
tony |
56 |
{$IFDEF MSWINDOWS} |
29 |
|
|
{$DEFINE WINDOWS} |
30 |
|
|
{$ENDIF} |
31 |
tony |
45 |
|
32 |
|
|
{$IFDEF FPC} |
33 |
tony |
56 |
{$mode delphi} |
34 |
tony |
45 |
{$codepage UTF8} |
35 |
|
|
{$interfaces COM} |
36 |
|
|
{$ENDIF} |
37 |
|
|
|
38 |
|
|
interface |
39 |
|
|
|
40 |
|
|
uses |
41 |
|
|
Classes, SysUtils, IB, FBArray, IBHeader, FB25Statement, FB25Attachment, FBClientAPI, |
42 |
tony |
263 |
FB25Transaction, FB25ClientAPI; |
43 |
tony |
45 |
|
44 |
|
|
type |
45 |
|
|
|
46 |
|
|
{ TFB25ArrayMetaData } |
47 |
|
|
|
48 |
|
|
TFB25ArrayMetaData = class(TFBArrayMetaData,IArrayMetaData) |
49 |
|
|
private |
50 |
|
|
FCodePage: TSystemCodePage; |
51 |
|
|
protected |
52 |
|
|
procedure LoadMetaData(aAttachment: IAttachment; aTransaction: ITransaction; |
53 |
tony |
56 |
relationName, columnName: AnsiString); override; |
54 |
tony |
45 |
public |
55 |
|
|
function GetCharSetID: cardinal; override; |
56 |
|
|
function GetCodePage: TSystemCodePage; override; |
57 |
|
|
end; |
58 |
|
|
|
59 |
|
|
{ TFB25Array } |
60 |
|
|
|
61 |
|
|
TFB25Array = class(TFBArray,IArray) |
62 |
|
|
private |
63 |
|
|
FDBHandle: TISC_DB_HANDLE; |
64 |
|
|
FTRHandle: TISC_TR_HANDLE; |
65 |
tony |
263 |
FFirebird25ClientAPI: TFB25ClientAPI; |
66 |
tony |
45 |
protected |
67 |
|
|
procedure InternalGetSlice; override; |
68 |
|
|
procedure InternalPutSlice(Force: boolean); override; |
69 |
|
|
public |
70 |
|
|
constructor Create(aAttachment: TFB25Attachment; aTransaction: TFB25Transaction; aField: IArrayMetaData); overload; |
71 |
|
|
constructor Create(aAttachment: TFB25Attachment; aTransaction: TFB25Transaction; aField: IArrayMetaData; ArrayID: TISC_QUAD); overload; |
72 |
|
|
end; |
73 |
|
|
|
74 |
|
|
implementation |
75 |
|
|
|
76 |
tony |
263 |
uses FBAttachment; |
77 |
tony |
45 |
|
78 |
|
|
const |
79 |
|
|
sGetArrayMetaData = 'Select F.RDB$CHARACTER_SET_ID '+ |
80 |
|
|
'From RDB$FIELDS F JOIN RDB$RELATION_FIELDS RF '+ |
81 |
|
|
'On F.RDB$FIELD_NAME = RF.RDB$FIELD_SOURCE '+ |
82 |
tony |
113 |
'Where RF.RDB$RELATION_NAME = ? and RF.RDB$FIELD_NAME = ? '+ |
83 |
|
|
'UNION '+ |
84 |
|
|
'Select F.RDB$CHARACTER_SET_ID '+ |
85 |
|
|
'From RDB$FIELDS F JOIN RDB$PROCEDURE_PARAMETERS PP '+ |
86 |
|
|
'On F.RDB$FIELD_NAME = PP.RDB$FIELD_SOURCE '+ |
87 |
|
|
'Where PP.RDB$PROCEDURE_NAME = ? and PP.RDB$PARAMETER_NAME = ?'; |
88 |
tony |
45 |
|
89 |
|
|
{ TFB25ArrayMetaData } |
90 |
|
|
|
91 |
|
|
procedure TFB25ArrayMetaData.LoadMetaData(aAttachment: IAttachment; |
92 |
tony |
56 |
aTransaction: ITransaction; relationName, columnName: AnsiString); |
93 |
tony |
45 |
var |
94 |
|
|
DBHandle: TISC_DB_HANDLE; |
95 |
|
|
TRHandle: TISC_TR_HANDLE; |
96 |
|
|
stmt: IStatement; |
97 |
tony |
47 |
CharWidth: integer; |
98 |
tony |
56 |
RelName: AnsiString; |
99 |
|
|
ColName: AnsiString; |
100 |
tony |
45 |
begin |
101 |
|
|
DBHandle := (aAttachment as TFB25Attachment).Handle; |
102 |
|
|
TRHandle := (aTransaction as TFB25Transaction).Handle; |
103 |
tony |
56 |
RelName := AnsiUpperCase(relationName); |
104 |
|
|
ColName := AnsiUpperCase(columnName); |
105 |
tony |
263 |
with (aAttachment as TFB25Attachment).Firebird25ClientAPI do |
106 |
tony |
45 |
if isc_array_lookup_bounds(StatusVector,@(DBHandle),@(TRHandle), |
107 |
tony |
56 |
PAnsiChar(RelName),PAnsiChar(ColName),@FArrayDesc) > 0 then |
108 |
tony |
45 |
IBDatabaseError; |
109 |
|
|
|
110 |
|
|
if (GetSQLType = SQL_TEXT) or (GetSQLType = SQL_VARYING) then |
111 |
|
|
begin |
112 |
|
|
stmt := TFB25Statement.Create(aAttachment as TFB25Attachment,aTransaction, |
113 |
|
|
sGetArrayMetaData ,aAttachment.GetSQLDialect); |
114 |
|
|
with stmt do |
115 |
|
|
begin |
116 |
|
|
SQLParams[0].AsString := RelationName; |
117 |
|
|
SQLParams[1].AsString := ColumnName; |
118 |
tony |
113 |
SQLParams[2].AsString := RelationName; |
119 |
|
|
SQLParams[3].AsString := ColumnName; |
120 |
tony |
45 |
with OpenCursor do |
121 |
|
|
if FetchNext then |
122 |
|
|
begin |
123 |
|
|
FCharSetID := Data[0].AsInteger; |
124 |
|
|
with (aAttachment as TFB25Attachment) do |
125 |
|
|
if (FCharSetID > 1) and HasDefaultCharSet then |
126 |
|
|
begin |
127 |
|
|
FCharSetID := CharSetID; |
128 |
|
|
FCodePage := CodePage; |
129 |
|
|
end |
130 |
|
|
else |
131 |
|
|
begin |
132 |
|
|
FCodePage := CP_NONE; |
133 |
tony |
60 |
FAttachment.CharSetID2CodePage(FCharSetID,FCodePage); |
134 |
tony |
45 |
end; |
135 |
|
|
end; |
136 |
|
|
end; |
137 |
|
|
end; |
138 |
tony |
47 |
if (FArrayDesc.array_desc_dtype in [blr_text,blr_cstring, blr_varying]) and |
139 |
|
|
(FCharSetID = 0) then {This really shouldn't be necessary - but it is :(} |
140 |
|
|
with aAttachment as TFBAttachment do |
141 |
|
|
begin |
142 |
tony |
60 |
if HasDefaultCharSet and FAttachment.CharSetWidth(CharSetID,CharWidth) then |
143 |
tony |
56 |
FArrayDesc.array_desc_length := FArrayDesc.array_desc_length * CharWidth; |
144 |
tony |
47 |
end; |
145 |
tony |
45 |
end; |
146 |
|
|
|
147 |
|
|
function TFB25ArrayMetaData.GetCharSetID: cardinal; |
148 |
|
|
begin |
149 |
|
|
Result := FCharSetID; |
150 |
|
|
end; |
151 |
|
|
|
152 |
|
|
function TFB25ArrayMetaData.GetCodePage: TSystemCodePage; |
153 |
|
|
begin |
154 |
|
|
Result := FCodePage; |
155 |
|
|
end; |
156 |
|
|
|
157 |
|
|
{ TFB25Array } |
158 |
|
|
|
159 |
|
|
procedure TFB25Array.InternalGetSlice; |
160 |
|
|
begin |
161 |
tony |
263 |
with FFirebird25ClientAPI do |
162 |
tony |
45 |
Call(isc_array_get_slice(StatusVector,@(FDBHandle),@(FTRHandle), |
163 |
|
|
@FArrayID, GetArrayDesc, |
164 |
|
|
Pointer(FBuffer), @FBufSize)); |
165 |
|
|
end; |
166 |
|
|
|
167 |
|
|
procedure TFB25Array.InternalPutSlice(Force: boolean); |
168 |
|
|
begin |
169 |
tony |
263 |
with FFirebird25ClientAPI do |
170 |
tony |
45 |
if (isc_array_put_slice(StatusVector, @(FDBHandle),@(FTRHandle), |
171 |
|
|
@FArrayID, GetArrayDesc, |
172 |
|
|
Pointer(FBuffer),@FBufSize) > 0) and not Force then |
173 |
|
|
IBDatabaseError; |
174 |
|
|
SignalActivity; |
175 |
|
|
end; |
176 |
|
|
|
177 |
|
|
constructor TFB25Array.Create(aAttachment: TFB25Attachment; |
178 |
|
|
aTransaction: TFB25Transaction; aField: IArrayMetaData); |
179 |
|
|
begin |
180 |
|
|
inherited Create(aAttachment,aTransaction,aField); |
181 |
|
|
FDBHandle := aAttachment.Handle; |
182 |
|
|
FTRHandle := aTransaction.Handle; |
183 |
tony |
263 |
FFirebird25ClientAPI := aAttachment.Firebird25ClientAPI; |
184 |
|
|
OnDatabaseError := FFirebird25ClientAPI.IBDataBaseError; |
185 |
tony |
45 |
end; |
186 |
|
|
|
187 |
|
|
constructor TFB25Array.Create(aAttachment: TFB25Attachment; |
188 |
|
|
aTransaction: TFB25Transaction; aField: IArrayMetaData; ArrayID: TISC_QUAD); |
189 |
|
|
begin |
190 |
|
|
inherited Create(aAttachment,aTransaction,aField,ArrayID); |
191 |
|
|
FDBHandle := aAttachment.Handle; |
192 |
|
|
FTRHandle := aTransaction.Handle; |
193 |
tony |
263 |
FFirebird25ClientAPI := aAttachment.Firebird25ClientAPI; |
194 |
|
|
OnDatabaseError := FFirebird25ClientAPI.IBDataBaseError; |
195 |
tony |
45 |
end; |
196 |
|
|
|
197 |
|
|
end. |
198 |
|
|
|