Subject | Re: [firebird-support] How to insert characters for barcode code 128 to table via code? |
---|---|
Author | Dimitry Sibiryakov |
Post date | 2019-01-16T10:25:55Z |
16.01.2019 3:12, trskopo@... [firebird-support] wrote:
XSQLDA* sqlda;
....
sqlda->sqlvar[1].sqldata = buffer;
memcpy(buffer, YourBarCode, 8);
isc_dsql_execute(....., sqlda);
--
WBR, SD.
> how to insert it via code?char buffer[8];
XSQLDA* sqlda;
....
sqlda->sqlvar[1].sqldata = buffer;
memcpy(buffer, YourBarCode, 8);
isc_dsql_execute(....., sqlda);
--
WBR, SD.