Search found 3 matches
- 07.08.2009, 18:00
- Forum: 6.6 - stable
- Topic: Firebird/Zeoslib 6.6.5-stable
- Replies: 4
- Views: 853
- 10.02.2009, 18:55
- Forum: 6.6 - stable
- Topic: Complete newbie question!
- Replies: 4
- Views: 584
I don't think you can execute multiple update statements at once. Try this QuotesZQuery.SQL.Clear; QuotesZQuery.SQL.Add('UPDATE LineItemTable SET DesignTime = ' + IntToStr(55) + ' WHERE Projectnumber=504 AND LineNumber=1;'); QuotesZQuery.ExecSQL; QuotesZQuery.SQL.Clear; QuotesZQuery.SQL.Add('UPDATE ...
- 07.02.2009, 06:11
- Forum: 6.6 - stable
- Topic: +++ Parallel Transaction / PrepareTransaction() ? +++
- Replies: 16
- Views: 2012
Re: +++ Parallel Transaction / PrepareTransaction() ? +++
This seems like an easy solution. Why do you want to avoid it? You could have several ZConnection components. One for the barcoder, one for the external event...as many as you need at one time.Lutz.H wrote:I know that it is possible to solve this problem with
independent ZConnections. Lutz