Search found 8 matches

by markd_mms
06.03.2006, 00:14
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: how to sort data in ZTable ?
Replies: 6
Views: 1719

Use the SortedFields property...

e.g.
SortedFields = "1 ASC, 2 DESC";
by markd_mms
25.11.2005, 05:01
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Transactions
Replies: 1
Views: 922

Transactions

Is it possible to programmatically instantiate a transaction object without having to use a TZConnection so I can use different transactions between some queries?

TIA
by markd_mms
17.11.2005, 22:37
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: TZIBEventAlerter
Replies: 1
Views: 834

TZIBEventAlerter

Does anyone have a copy of the source for TZIBEventAlerter that I could download?

TIA
by markd_mms
21.10.2005, 06:39
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Access violation when using TZStoredProc
Replies: 4
Views: 1432

I'm still trying to figure this out and I've run into something I don't understand procedure TZAbstractRODataset.SetConnection(Value: TZConnection); begin if FConnection <> Value then begin if Active then Close; Statement := nil; if FConnection <> nil then FConnection.UnregisterDataSet(Self); FConne...
by markd_mms
11.10.2005, 00:45
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: ADO timeout
Replies: 1
Views: 833

ADO timeout

Is there any way of specifying a timeout (command and connection) for an ado connection? I tried using the properties of the TZConnection but nothing seemed to work.

TIA
by markd_mms
04.10.2005, 01:07
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Access violation when using TZStoredProc
Replies: 4
Views: 1432

WINDOWS_DLL_LOCATION in ZPlainFirebird15.pas was set to gds32.dll so I just changed it to fbclient.dll and re-compiled

It still crashes with the CVS version.
by markd_mms
04.10.2005, 00:56
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Access violation when using TZStoredProc
Replies: 4
Views: 1432

I tried the latest CVS version but now I can't even connect. I keep on getting unvailable database and it tells me it can't find interbase.msg. The 6.5.1 non-CVS version would complain it was missing firebird.msg so maybe it's using the wrong protocol, although I set it to firebird-1.5.
by markd_mms
30.09.2005, 02:20
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Access violation when using TZStoredProc
Replies: 4
Views: 1432

Access violation when using TZStoredProc

I'm using Firebird embedded 1.5.2.4731 and I can't seem to use TZStoredProc - I always get an exception in the destructor of the TZConnection if I try to use them. I don't have any problem with TZQuery. Code is as follows... [syntax="c"] std::auto_ptr<TZStoredProc> qryEditRule(new TZStored...