Search found 3 matches

by DarylC
07.08.2009, 18:00
Forum: 6.6 - stable
Topic: Firebird/Zeoslib 6.6.5-stable
Replies: 4
Views: 834

I had a similar problem with Firebird a few months ago, so I re-installed Firebird. That cleared up the problem for me, but I never found out what was actually wrong.
by DarylC
10.02.2009, 18:55
Forum: 6.6 - stable
Topic: Complete newbie question!
Replies: 4
Views: 558

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 ...
by DarylC
07.02.2009, 06:11
Forum: 6.6 - stable
Topic: +++ Parallel Transaction / PrepareTransaction() ? +++
Replies: 16
Views: 1938

Re: +++ Parallel Transaction / PrepareTransaction() ? +++

Lutz.H wrote:I know that it is possible to solve this problem with
independent ZConnections. Lutz
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.