Search found 14 matches

by fredycc
02.08.2011, 19:08
Forum: ZeosLib 7.0 Beta Forum
Topic: Deplhi XE + Register Event with Firebird
Replies: 4
Views: 1194

Many thanks seawolf, works perfect :)

Regards
by fredycc
25.07.2011, 22:45
Forum: ZeosLib 7.0 Beta Forum
Topic: Deplhi XE + Register Event with Firebird
Replies: 4
Views: 1194

Excuse me seawolf, maybe I didn't explain me correctly, Event1 and Event2 are the name of the events that I use for test case, maybe a bad example, sorry. This is my procedure for register the name of my events: with dmEvents.ZIBEventAlerter1 do begin // discard all registered events UnregisterEvent...
by fredycc
25.07.2011, 21:32
Forum: ZeosLib 7.0 Beta Forum
Topic: Deplhi XE + Register Event with Firebird
Replies: 4
Views: 1194

Deplhi XE + Register Event with Firebird

Hi, I have a little problem with version 7 alfa svn at version 903 with Events, Firebird and Delphi XE, suppose that I register a event with name Event1 but the only way to fire the event is with the first character, in this case 'E' but if my second event is named Event2, two events a detected with...
by fredycc
25.05.2010, 05:25
Forum: Firebird
Topic: Firebird 2.5 Support? Which version?
Replies: 2
Views: 967

Firebird 2.5 Support? Which version?

I was reading about new implementations for firebird 2.5, new commands, etc; but some days ago I tried to use fbclient (win) of 2.5 RC2 version with a exception before connect to database; for now I have a firebird 2.5 server and for the client pc I have using the 2.1 fbclient to avoid exceptions in...
by fredycc
03.05.2010, 22:33
Forum: MS SQL Server
Topic: Where is ADO?
Replies: 1
Views: 1629

Where is ADO?

I have reading this post: http://zeos.firmos.at/viewtopic.php?t=1391 Because actually I'm working with ms sql server 2005 standard, and then I use ntwdblib.dll for stablish a connection, but with 64 bit OS and sql server 2008 there is not that library, another way can be using ADO but with version 6...
by fredycc
15.04.2010, 15:16
Forum: 6.6 - stable
Topic: How to configure ZIBEventAlerter?
Replies: 2
Views: 730

After discover my error I can compile the application but I don't recieve the alert after insert a record..
by fredycc
15.04.2010, 00:33
Forum: 6.6 - stable
Topic: How to configure ZIBEventAlerter?
Replies: 2
Views: 730

How to configure ZIBEventAlerter?

Hi, I want to register a Event into my app [Lazarus 0.9.28.2 + FPc 2.2.4] but I can't; I only obtain a SIGSEGV Exception after register the event; I follow this steps without success :cry: http://firebird-with-delphi.blogspot.com/2008/05/zeos-663-rcrev368-zibeventalerter.html I have installed Zeos 6...
by fredycc
09.04.2010, 23:20
Forum: 6.6 - stable
Topic: maintain RecordSet into memory or component
Replies: 0
Views: 417

maintain RecordSet into memory or component

Hello, I have a questions about how maintain in memory records of any query after close connection; and search a data into that. :roll:

Or how can I implement it; I have usign lazarus.
by fredycc
06.04.2010, 23:56
Forum: MS SQL Server
Topic: Can not open a Resultset
Replies: 1
Views: 1579

SOLVED

I found the solution, my mistake is my sp, I modify it and works. :oops:
by fredycc
06.04.2010, 22:49
Forum: MS SQL Server
Topic: Can not open a Resultset
Replies: 1
Views: 1579

Can not open a Resultset

Hi boys I have a problem with Zeos 6.6.6-stable & FPC 2.2.4(windows 7) & SQL server 2005; I have created a SP like this: //Is a simple SP to return a integer ALTER PROCEDURE [dbo].[BuscaTarCta]( @Tar VARCHAR(18), @Cta VARCHAR(18), @Res Integer OUTPUT ) AS SET NOCOUNT ON; Select @Res = COUNT(...
by fredycc
26.01.2010, 00:47
Forum: Firebird
Topic: concurrent transactions
Replies: 3
Views: 635

concurrent transaction

I think that my case is the same: http://zeos.firmos.at/viewtopic.php?t=2 ... ransaction :( . Maybe this need to be implement in new versions. :?:
by fredycc
25.01.2010, 20:54
Forum: Firebird
Topic: concurrent transactions
Replies: 3
Views: 635

concurrent transactions

I have a questions about how works with concurrent transactions, I worked witn a component with Lazarus and Delphi name TSQLTransactions, this you can set a Action like Rollback and Commit for each Transaction, how can I obtain the same result with Zeos?, I only have in my project a ZConnection &...
by fredycc
18.01.2010, 23:20
Forum: Firebird
Topic: Check Connection to Firebird
Replies: 2
Views: 693

Thanks seawolf, works perfect for firebird connection!
by fredycc
18.01.2010, 17:04
Forum: Firebird
Topic: Check Connection to Firebird
Replies: 2
Views: 693

Check Connection to Firebird

Hello, this is my first topic, I have used Lazarus 0.9.28.2 beta & FPC 2.2.4, and Zeos 6.6.5 Stable versión, today I have update it from SVN. My problem is the next: Before any query to db I check if I still connected to the server with: if not db.Connected then begin try db.Reconnect . . end el...