Re: [firebird-support] How to insert characters for barcode code 128 to table via code?

2019-01-16 Thread Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
On 16-1-2019 03:12, trsk...@yahoo.com [firebird-support] wrote: > For example, I have these characters : Í*B#È4jÎ > > I can copy paste that characters with flamerobin into Firebird table, > but how to insert it via code? Your question is not very clear, nor have you specified which language.

ODP: [firebird-support] How to insert characters for barcode code 128to table via code?

2019-01-16 Thread Karol Bieniaszewski liviusliv...@poczta.onet.pl [firebird-support]
Look also at hex literals https://firebirdsql.org/refdocs/langrefupd25-hexbinstrings.html Pozdrawiam, Karol Bieniaszewski

Re: [firebird-support] How to insert characters for barcode code 128 to table via code?

2019-01-16 Thread Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
16.01.2019 3:12, trsk...@yahoo.com [firebird-support] wrote: > 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.