1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
{
}
program testib;
{$IFDEF Linux} // not for *BSD
{$LINKLIB dl}
{$ENDIF}
uses Ibase60, strings;
{$h-}
Const
{ Change to YOUR database server }
ServerDb : pchar = 'testdb.gdb';
{ CHange to YOUR username and password. These may be empty }
username = '';
PWD = '';
{ Don't edit after this }
dbinfo : array [1..3] of byte
= (isc_info_page_size,isc_info_num_buffers,isc_info_end);
query : pchar = 'select * from FPDev;';
flag : array[0..2] of shortint = (0,0,0);
Type
TStatusArray = Array[0..19] of ISC_Status;
Var
DB : Tisc_db_handle;
TA : TISC_tr_handle;
statement : TISC_stmt_handle;
DPB : String;
Status : TStatusArray;
sqlda : PXSQLDA;
name,email : String;
i,id : longint;
fs : longint;
Function CheckIBstatus (Const Status : TStatusArray) : Boolean;
begin
CheckIBstatus:=Not ((Status[0]=1) and (status[1]<>0))
end;
Procedure DoError (Const status : TStatusArray);
begin
Writeln ('Failed:');
isc_print_status(@status);
halt(1);
end;
begin
db:=Nil;
dpb:=chr(isc_dpb_version1);
If UserName<>'' then
begin
dpb:=dpb+chr(isc_dpb_user_name)+chr(length(UserName))+username;
If pwd<>'' then
dpb:=dpb+chr(isc_dpb_password)+chr(length(pwd))+pwd;
end;
Write ('Connecting to ',serverdb,': ');
isc_attach_database(@Status[0],strlen(serverdb),serverdb,@db,length(dpb),@dpb[1]);
if Not CheckIBStatus(Status) then
DoError(status)
else
Writeln ('OK.');
Write ('Starting Transaction : ');
If ISC_start_transaction (@status[0],@ta,1,[@db,0,Nil])<>0 then
DoError(Status)
else
Writeln ('OK.');
getmem (sqlda,XSQLDA_Length(3));
sqlda^.sqln:=3;
sqlda^.sqld:=3;
sqlda^.version:=1;
Write('Allocating statement : ');
If isc_dsql_allocate_statement(@status ,@db,@statement)<>0 then
DoError(Status)
else
Writeln ('OK.');
Write ('Preparing statement : ');
if ISC_dsql_prepare(@status,@ta,@statement,0,query,1,sqlda)<>0 then
DoError(Status)
else
Writeln ('OK.');
I:=0;
With sqlda^.sqlvar[i] do
begin
sqldata := @id;
sqltype := sql_long;
sqlind := @flag[0];
end;
inc(i);
With sqlda^.sqlvar[i] do
begin
sqldata := @name[1];
sqltype := sql_text;
sqlind := @flag[1];
end;
inc(i);
With sqlda^.sqlvar[i] do
begin
sqldata := @email[1];
sqltype := sql_text;
sqlind := @flag[2];
end;
Write ('Executing statement : ');
if isc_dsql_execute(@status,@ta,@statement,1,Nil)<>0 then
DoError(Status)
else
Writeln ('OK.');
Writeln ('Fetching rows :');
Repeat
FS:=isc_dsql_fetch(@status,@statement,1,sqlda);
If FS=0 then
begin
I:=255;
While Name[I]=' ' do Dec(i);
setlength(Name,i);
I:=255;
While Email[I]=' ' do Dec(i);
setlength(email,i);
Writeln ('(',ID,',',name,',',email,')');
end;
until FS<>0;
If FS<>100 then
DoError(status)
else
Writeln ('At end.');
Write ('Freeing statement : ');
if isc_dsql_free_statement(@status,@statement,DSQL_Close)<>0 then
DoError(Status)
else
Writeln ('OK.');
Write ('Committing transaction : ');
If ISC_Commit_transaction(@status,@ta)<>0 then
doerror(status)
else
Writeln ('OK.');
Write ('Disconnecting from database: ');
isc_detach_database(@status,@db);
If CheckIBStatus (Status) Then
Writeln ('OK.')
else
doerror(status);
end.
|