8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:43:02 +01:00

Be sure to actually use the tpb we have just declared.

This commit is contained in:
Paul Reeves 2020-08-19 10:00:01 +02:00
parent 1d1284567a
commit f222127d4f

View File

@ -221,7 +221,7 @@ Begin
tpb.insertTag(status, isc_tpb_read);
// start transaction
tra := att.startTransaction(status, 0, nil);
tra := att.startTransaction(status, tpb.getBufferLength( status ), tpb.getBuffer( status ));
// prepare statement
stmt := att.prepare(status, tra, 0, 'Select last_name, first_name, phone_ext from phone_list ' +