I would like to know, if there's a way to catch notify signal with Zeos. If not, i'd appriciate a workaround example, that is working with Zeos.
Thanks in advance
Search found 3 matches
- 14.09.2006, 19:20
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: LISTEN / NOTIFY question
- Replies: 1
- Views: 1017
- 28.01.2006, 23:34
- Forum: 6.1.5
- Topic: No result set with ZQuery, but ok with ZReadOnlyQuery
- Replies: 3
- Views: 1636
- 27.01.2006, 20:05
- Forum: 6.1.5
- Topic: No result set with ZQuery, but ok with ZReadOnlyQuery
- Replies: 3
- Views: 1636
No result set with ZQuery, but ok with ZReadOnlyQuery
Im looking for help with a strange problem i encountered lately. AnsiString sql; ZQuery1>Close(); ZQuery1->SQL->Clear(); sql = "SELECT max(productid) FROM products;"; ZQuery1->SQL->Add( sql ); ZQuery1->Open(); AnsiString productid = ZQuery1->Fields->FieldByNumber(1)->AsString; ShowMessage(...