Search found 2 matches

by sevenmiles
07.01.2008, 03:11
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Postgresql update blob field, how to
Replies: 2
Views: 1284

thank you, RDNK.
I'll try it
by sevenmiles
26.12.2007, 10:28
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Postgresql update blob field, how to
Replies: 2
Views: 1284

Postgresql update blob field, how to

hi, I'm writing code in C++builder6. tbl_test has id varchar user_id varchar facial_photo bytea my code is like below ZQuery1->SQL->Add("select * from tbl_test where id='0001'"); ZQuery1->Open(); if(ZQuery1->RecordCount != 0) { ZQuery1->Active = true; ZQuery1->Edit(); TStream *BlobStream =...