Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit223a9cd

Browse files
author
Michael Meskes
committed
Remove __FUNCTION__ keyword that is not recognized by som compilers.
1 parent822697a commit223a9cd

File tree

4 files changed

+110
-102
lines changed

4 files changed

+110
-102
lines changed

‎src/interfaces/ecpg/ecpglib/sqlda.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ ecpg_build_compat_sqlda(int line, PGresult *res, int row, enum COMPAT_MODE compa
215215
fname= (char*)(sqlvar+sqld);
216216

217217
sqlda->sqld=sqld;
218-
ecpg_log("%s sqld = %d\n",__FUNCTION__,sqld);
218+
ecpg_log("ecpg_build_compat_sqlda on line %d sqld = %d\n",line,sqld);
219219
sqlda->desc_occ=size;/* cheat here, keep the full allocated size */
220220
sqlda->sqlvar=sqlvar;
221221

@@ -373,7 +373,7 @@ ecpg_set_compat_sqlda(int lineno, struct sqlda_compat **_sqlda, const PGresult *
373373
}
374374

375375
isnull=PQgetisnull(res,row,i);
376-
ecpg_log("%s row %d col %d %s\n",__FUNCTION__,row,i,isnull ?"IS NULL" :"IS NOT NULL");
376+
ecpg_log("ecpg_set_compat_sqlda on line %d row %d col %d %s\n",lineno,row,i,isnull ?"IS NULL" :"IS NOT NULL");
377377
sqlda->sqlvar[i].sqlind=isnull ?&value_is_null :&value_is_not_null;
378378
sqlda->sqlvar[i].sqlitype=ECPGt_short;
379379
sqlda->sqlvar[i].sqlilen=sizeof(short);
@@ -408,7 +408,7 @@ ecpg_build_native_sqlda(int line, PGresult *res, int row, enum COMPAT_MODE compa
408408

409409
sprintf(sqlda->sqldaid,"SQLDA ");
410410
sqlda->sqld=sqlda->sqln=PQnfields(res);
411-
ecpg_log("%s sqld = %d\n",__FUNCTION__,sqlda->sqld);
411+
ecpg_log("ecpg_build_native_sqlda on line %d sqld = %d\n",line,sqlda->sqld);
412412
sqlda->sqldabc=sizeof(structsqlda_struct)+ (sqlda->sqld-1)*sizeof(structsqlvar_struct);
413413

414414
for (i=0;i<sqlda->sqld;i++)
@@ -556,7 +556,7 @@ ecpg_set_native_sqlda(int lineno, struct sqlda_struct **_sqlda, const PGresult *
556556
}
557557

558558
isnull=PQgetisnull(res,row,i);
559-
ecpg_log("%s row %d col %d %s\n",__FUNCTION__,row,i,isnull ?"IS NULL" :"IS NOT NULL");
559+
ecpg_log("ecpg_set_native_sqlda on line %d row %d col %d %s\n",lineno,row,i,isnull ?"IS NULL" :"IS NOT NULL");
560560
sqlda->sqlvar[i].sqlind=isnull ?&value_is_null :&value_is_not_null;
561561
if (!isnull)
562562
{

‎src/interfaces/ecpg/include/sqlda-native.h

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
/*
2-
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqlda-native.h,v 1.1 2010/01/05 16:38:23 meskes Exp $
2+
* $PostgreSQL: pgsql/src/interfaces/ecpg/include/sqlda-native.h,v 1.2 2010/01/06 15:10:21 meskes Exp $
33
*/
44

55
#ifndefECPG_SQLDA_NATIVE_H
66
#defineECPG_SQLDA_NATIVE_H
77

8-
#include"postgres_fe.h"
8+
/*
9+
* Maximum length for identifiers (e.g. table names, column names,
10+
* function names). Names actually are limited to one less byte than this,
11+
* because the length must include a trailing zero byte.
12+
*
13+
* This should be at least as much as NAMEDATALEN of the database the
14+
* applications run against.
15+
*/
16+
#defineNAMEDATALEN 64
917

1018
structsqlname
1119
{

‎src/interfaces/ecpg/test/expected/compat_informix-sqlda.stderr

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,27 @@
3636
[NO_PID]: sqlca: code: 0, state: 00000
3737
[NO_PID]: ecpg_execute on line 109: correctly got 1 tuples with 5 fields
3838
[NO_PID]: sqlca: code: 0, state: 00000
39-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
39+
[NO_PID]: ecpg_build_compat_sqldaon line 109sqld = 5
4040
[NO_PID]: sqlca: code: 0, state: 00000
4141
[NO_PID]: ecpg_execute on line 109: new sqlda was built
4242
[NO_PID]: sqlca: code: 0, state: 00000
43-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
43+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 0 IS NOT NULL
4444
[NO_PID]: sqlca: code: 0, state: 00000
4545
[NO_PID]: ecpg_get_data on line 109: RESULT: 1 offset: -1; array: yes
4646
[NO_PID]: sqlca: code: 0, state: 00000
47-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NOT NULL
47+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 1 IS NOT NULL
4848
[NO_PID]: sqlca: code: 0, state: 00000
4949
[NO_PID]: ecpg_get_data on line 109: RESULT: a offset: -1; array: yes
5050
[NO_PID]: sqlca: code: 0, state: 00000
51-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NOT NULL
51+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 2 IS NOT NULL
5252
[NO_PID]: sqlca: code: 0, state: 00000
5353
[NO_PID]: ecpg_get_data on line 109: RESULT: 1.0 offset: -1; array: yes
5454
[NO_PID]: sqlca: code: 0, state: 00000
55-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NOT NULL
55+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 3 IS NOT NULL
5656
[NO_PID]: sqlca: code: 0, state: 00000
5757
[NO_PID]: ecpg_get_data on line 109: RESULT: 1 offset: -1; array: yes
5858
[NO_PID]: sqlca: code: 0, state: 00000
59-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NOT NULL
59+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 4 IS NOT NULL
6060
[NO_PID]: sqlca: code: 0, state: 00000
6161
[NO_PID]: ecpg_get_data on line 109: RESULT: a offset: -1; array: yes
6262
[NO_PID]: sqlca: code: 0, state: 00000
@@ -68,21 +68,21 @@
6868
[NO_PID]: sqlca: code: 0, state: 00000
6969
[NO_PID]: ecpg_execute on line 109: correctly got 1 tuples with 5 fields
7070
[NO_PID]: sqlca: code: 0, state: 00000
71-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
71+
[NO_PID]: ecpg_build_compat_sqldaon line 109sqld = 5
7272
[NO_PID]: sqlca: code: 0, state: 00000
7373
[NO_PID]: ecpg_execute on line 109: new sqlda was built
7474
[NO_PID]: sqlca: code: 0, state: 00000
75-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
75+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 0 IS NOT NULL
7676
[NO_PID]: sqlca: code: 0, state: 00000
7777
[NO_PID]: ecpg_get_data on line 109: RESULT: 2 offset: -1; array: yes
7878
[NO_PID]: sqlca: code: 0, state: 00000
79-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NULL
79+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 1 IS NULL
8080
[NO_PID]: sqlca: code: 0, state: 00000
81-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NULL
81+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 2 IS NULL
8282
[NO_PID]: sqlca: code: 0, state: 00000
83-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NULL
83+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 3 IS NULL
8484
[NO_PID]: sqlca: code: 0, state: 00000
85-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NULL
85+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 4 IS NULL
8686
[NO_PID]: sqlca: code: 0, state: 00000
8787
[NO_PID]: ecpg_execute on line 109: putting result (1 tuple 5 fields) into sqlda descriptor
8888
[NO_PID]: sqlca: code: 0, state: 00000
@@ -92,27 +92,27 @@
9292
[NO_PID]: sqlca: code: 0, state: 00000
9393
[NO_PID]: ecpg_execute on line 109: correctly got 1 tuples with 5 fields
9494
[NO_PID]: sqlca: code: 0, state: 00000
95-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
95+
[NO_PID]: ecpg_build_compat_sqldaon line 109sqld = 5
9696
[NO_PID]: sqlca: code: 0, state: 00000
9797
[NO_PID]: ecpg_execute on line 109: new sqlda was built
9898
[NO_PID]: sqlca: code: 0, state: 00000
99-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
99+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 0 IS NOT NULL
100100
[NO_PID]: sqlca: code: 0, state: 00000
101101
[NO_PID]: ecpg_get_data on line 109: RESULT: 4 offset: -1; array: yes
102102
[NO_PID]: sqlca: code: 0, state: 00000
103-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NOT NULL
103+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 1 IS NOT NULL
104104
[NO_PID]: sqlca: code: 0, state: 00000
105105
[NO_PID]: ecpg_get_data on line 109: RESULT: d offset: -1; array: yes
106106
[NO_PID]: sqlca: code: 0, state: 00000
107-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NOT NULL
107+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 2 IS NOT NULL
108108
[NO_PID]: sqlca: code: 0, state: 00000
109109
[NO_PID]: ecpg_get_data on line 109: RESULT: 4.0 offset: -1; array: yes
110110
[NO_PID]: sqlca: code: 0, state: 00000
111-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NOT NULL
111+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 3 IS NOT NULL
112112
[NO_PID]: sqlca: code: 0, state: 00000
113113
[NO_PID]: ecpg_get_data on line 109: RESULT: 4 offset: -1; array: yes
114114
[NO_PID]: sqlca: code: 0, state: 00000
115-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NOT NULL
115+
[NO_PID]: ecpg_set_compat_sqldaon line 109row 0 col 4 IS NOT NULL
116116
[NO_PID]: sqlca: code: 0, state: 00000
117117
[NO_PID]: ecpg_get_data on line 109: RESULT: d offset: -1; array: yes
118118
[NO_PID]: sqlca: code: 0, state: 00000
@@ -148,27 +148,27 @@
148148
[NO_PID]: sqlca: code: 0, state: 00000
149149
[NO_PID]: ecpg_execute on line 146: correctly got 1 tuples with 5 fields
150150
[NO_PID]: sqlca: code: 0, state: 00000
151-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
151+
[NO_PID]: ecpg_build_compat_sqldaon line 146sqld = 5
152152
[NO_PID]: sqlca: code: 0, state: 00000
153153
[NO_PID]: ecpg_execute on line 146: new sqlda was built
154154
[NO_PID]: sqlca: code: 0, state: 00000
155-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
155+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 0 IS NOT NULL
156156
[NO_PID]: sqlca: code: 0, state: 00000
157157
[NO_PID]: ecpg_get_data on line 146: RESULT: 1 offset: -1; array: yes
158158
[NO_PID]: sqlca: code: 0, state: 00000
159-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NOT NULL
159+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 1 IS NOT NULL
160160
[NO_PID]: sqlca: code: 0, state: 00000
161161
[NO_PID]: ecpg_get_data on line 146: RESULT: a offset: -1; array: yes
162162
[NO_PID]: sqlca: code: 0, state: 00000
163-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NOT NULL
163+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 2 IS NOT NULL
164164
[NO_PID]: sqlca: code: 0, state: 00000
165165
[NO_PID]: ecpg_get_data on line 146: RESULT: 1.0 offset: -1; array: yes
166166
[NO_PID]: sqlca: code: 0, state: 00000
167-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NOT NULL
167+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 3 IS NOT NULL
168168
[NO_PID]: sqlca: code: 0, state: 00000
169169
[NO_PID]: ecpg_get_data on line 146: RESULT: 1 offset: -1; array: yes
170170
[NO_PID]: sqlca: code: 0, state: 00000
171-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NOT NULL
171+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 4 IS NOT NULL
172172
[NO_PID]: sqlca: code: 0, state: 00000
173173
[NO_PID]: ecpg_get_data on line 146: RESULT: a offset: -1; array: yes
174174
[NO_PID]: sqlca: code: 0, state: 00000
@@ -180,21 +180,21 @@
180180
[NO_PID]: sqlca: code: 0, state: 00000
181181
[NO_PID]: ecpg_execute on line 146: correctly got 1 tuples with 5 fields
182182
[NO_PID]: sqlca: code: 0, state: 00000
183-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
183+
[NO_PID]: ecpg_build_compat_sqldaon line 146sqld = 5
184184
[NO_PID]: sqlca: code: 0, state: 00000
185185
[NO_PID]: ecpg_execute on line 146: new sqlda was built
186186
[NO_PID]: sqlca: code: 0, state: 00000
187-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
187+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 0 IS NOT NULL
188188
[NO_PID]: sqlca: code: 0, state: 00000
189189
[NO_PID]: ecpg_get_data on line 146: RESULT: 2 offset: -1; array: yes
190190
[NO_PID]: sqlca: code: 0, state: 00000
191-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NULL
191+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 1 IS NULL
192192
[NO_PID]: sqlca: code: 0, state: 00000
193-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NULL
193+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 2 IS NULL
194194
[NO_PID]: sqlca: code: 0, state: 00000
195-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NULL
195+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 3 IS NULL
196196
[NO_PID]: sqlca: code: 0, state: 00000
197-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NULL
197+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 4 IS NULL
198198
[NO_PID]: sqlca: code: 0, state: 00000
199199
[NO_PID]: ecpg_execute on line 146: putting result (1 tuple 5 fields) into sqlda descriptor
200200
[NO_PID]: sqlca: code: 0, state: 00000
@@ -204,27 +204,27 @@
204204
[NO_PID]: sqlca: code: 0, state: 00000
205205
[NO_PID]: ecpg_execute on line 146: correctly got 1 tuples with 5 fields
206206
[NO_PID]: sqlca: code: 0, state: 00000
207-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
207+
[NO_PID]: ecpg_build_compat_sqldaon line 146sqld = 5
208208
[NO_PID]: sqlca: code: 0, state: 00000
209209
[NO_PID]: ecpg_execute on line 146: new sqlda was built
210210
[NO_PID]: sqlca: code: 0, state: 00000
211-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
211+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 0 IS NOT NULL
212212
[NO_PID]: sqlca: code: 0, state: 00000
213213
[NO_PID]: ecpg_get_data on line 146: RESULT: 4 offset: -1; array: yes
214214
[NO_PID]: sqlca: code: 0, state: 00000
215-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NOT NULL
215+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 1 IS NOT NULL
216216
[NO_PID]: sqlca: code: 0, state: 00000
217217
[NO_PID]: ecpg_get_data on line 146: RESULT: d offset: -1; array: yes
218218
[NO_PID]: sqlca: code: 0, state: 00000
219-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NOT NULL
219+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 2 IS NOT NULL
220220
[NO_PID]: sqlca: code: 0, state: 00000
221221
[NO_PID]: ecpg_get_data on line 146: RESULT: 4.0 offset: -1; array: yes
222222
[NO_PID]: sqlca: code: 0, state: 00000
223-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NOT NULL
223+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 3 IS NOT NULL
224224
[NO_PID]: sqlca: code: 0, state: 00000
225225
[NO_PID]: ecpg_get_data on line 146: RESULT: 4 offset: -1; array: yes
226226
[NO_PID]: sqlca: code: 0, state: 00000
227-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NOT NULL
227+
[NO_PID]: ecpg_set_compat_sqldaon line 146row 0 col 4 IS NOT NULL
228228
[NO_PID]: sqlca: code: 0, state: 00000
229229
[NO_PID]: ecpg_get_data on line 146: RESULT: d offset: -1; array: yes
230230
[NO_PID]: sqlca: code: 0, state: 00000
@@ -256,27 +256,27 @@
256256
[NO_PID]: sqlca: code: 0, state: 00000
257257
[NO_PID]: ecpg_execute on line 184: correctly got 1 tuples with 5 fields
258258
[NO_PID]: sqlca: code: 0, state: 00000
259-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
259+
[NO_PID]: ecpg_build_compat_sqldaon line 184sqld = 5
260260
[NO_PID]: sqlca: code: 0, state: 00000
261261
[NO_PID]: ecpg_execute on line 184: new sqlda was built
262262
[NO_PID]: sqlca: code: 0, state: 00000
263-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
263+
[NO_PID]: ecpg_set_compat_sqldaon line 184row 0 col 0 IS NOT NULL
264264
[NO_PID]: sqlca: code: 0, state: 00000
265265
[NO_PID]: ecpg_get_data on line 184: RESULT: 4 offset: -1; array: yes
266266
[NO_PID]: sqlca: code: 0, state: 00000
267-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NOT NULL
267+
[NO_PID]: ecpg_set_compat_sqldaon line 184row 0 col 1 IS NOT NULL
268268
[NO_PID]: sqlca: code: 0, state: 00000
269269
[NO_PID]: ecpg_get_data on line 184: RESULT: d offset: -1; array: yes
270270
[NO_PID]: sqlca: code: 0, state: 00000
271-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NOT NULL
271+
[NO_PID]: ecpg_set_compat_sqldaon line 184row 0 col 2 IS NOT NULL
272272
[NO_PID]: sqlca: code: 0, state: 00000
273273
[NO_PID]: ecpg_get_data on line 184: RESULT: 4.0 offset: -1; array: yes
274274
[NO_PID]: sqlca: code: 0, state: 00000
275-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NOT NULL
275+
[NO_PID]: ecpg_set_compat_sqldaon line 184row 0 col 3 IS NOT NULL
276276
[NO_PID]: sqlca: code: 0, state: 00000
277277
[NO_PID]: ecpg_get_data on line 184: RESULT: 4 offset: -1; array: yes
278278
[NO_PID]: sqlca: code: 0, state: 00000
279-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NOT NULL
279+
[NO_PID]: ecpg_set_compat_sqldaon line 184row 0 col 4 IS NOT NULL
280280
[NO_PID]: sqlca: code: 0, state: 00000
281281
[NO_PID]: ecpg_get_data on line 184: RESULT: d offset: -1; array: yes
282282
[NO_PID]: sqlca: code: 0, state: 00000
@@ -296,27 +296,27 @@
296296
[NO_PID]: sqlca: code: 0, state: 00000
297297
[NO_PID]: ecpg_execute on line 221: correctly got 1 tuples with 5 fields
298298
[NO_PID]: sqlca: code: 0, state: 00000
299-
[NO_PID]: ecpg_build_compat_sqlda sqld = 5
299+
[NO_PID]: ecpg_build_compat_sqldaon line 221sqld = 5
300300
[NO_PID]: sqlca: code: 0, state: 00000
301301
[NO_PID]: ecpg_execute on line 221: new sqlda was built
302302
[NO_PID]: sqlca: code: 0, state: 00000
303-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 0 IS NOT NULL
303+
[NO_PID]: ecpg_set_compat_sqldaon line 221row 0 col 0 IS NOT NULL
304304
[NO_PID]: sqlca: code: 0, state: 00000
305305
[NO_PID]: ecpg_get_data on line 221: RESULT: 4 offset: -1; array: yes
306306
[NO_PID]: sqlca: code: 0, state: 00000
307-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 1 IS NOT NULL
307+
[NO_PID]: ecpg_set_compat_sqldaon line 221row 0 col 1 IS NOT NULL
308308
[NO_PID]: sqlca: code: 0, state: 00000
309309
[NO_PID]: ecpg_get_data on line 221: RESULT: d offset: -1; array: yes
310310
[NO_PID]: sqlca: code: 0, state: 00000
311-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 2 IS NOT NULL
311+
[NO_PID]: ecpg_set_compat_sqldaon line 221row 0 col 2 IS NOT NULL
312312
[NO_PID]: sqlca: code: 0, state: 00000
313313
[NO_PID]: ecpg_get_data on line 221: RESULT: 4.0 offset: -1; array: yes
314314
[NO_PID]: sqlca: code: 0, state: 00000
315-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 3 IS NOT NULL
315+
[NO_PID]: ecpg_set_compat_sqldaon line 221row 0 col 3 IS NOT NULL
316316
[NO_PID]: sqlca: code: 0, state: 00000
317317
[NO_PID]: ecpg_get_data on line 221: RESULT: 4 offset: -1; array: yes
318318
[NO_PID]: sqlca: code: 0, state: 00000
319-
[NO_PID]: ecpg_set_compat_sqlda row 0 col 4 IS NOT NULL
319+
[NO_PID]: ecpg_set_compat_sqldaon line 221row 0 col 4 IS NOT NULL
320320
[NO_PID]: sqlca: code: 0, state: 00000
321321
[NO_PID]: ecpg_get_data on line 221: RESULT: d offset: -1; array: yes
322322
[NO_PID]: sqlca: code: 0, state: 00000

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp