Re: [firebird-python] Events

2012-05-26 Thread Hajime Nakagami
Hi Pavel and others, I don't spend too many time. probably return correct count at wait() method. now merge event supoort to master repository I want someone tests pyfirebirdsql's event support Best Regards 2012/5/25 Hajime Nakagami : > Thanks Pavel, > > Umm, it is seems too difficult for me :

Re: [firebird-python] Events

2012-05-25 Thread Hajime Nakagami
Thanks Pavel, Umm, it is seems too difficult for me :-( Are isc_event_block and isc_event_counts API but not network protocol ? I think the driver can count event occured via to use op_conenct_request and op_que_event, is it ture ? Probably I will spend to many time to resolve this problem. Ev

Re: [firebird-python] Events

2012-05-25 Thread Pavel Cisar
Hi Hajime, The event notification in FB (via client library API) uses two data structures (event blocks). One for event counts received so far and other for updated event counts. They are initialized by isc_event_block API call. Once the AST callback is registered via isc_que_events API call,

Re: [firebird-python] Events

2012-05-24 Thread Hajime Nakagami
Hi all I have merged first event support codes to pyfirebridsql's master branch. https://github.com/nakagami/pyfirebirdsql Now it can recieve event notification. But It can't return correct count(flag ?) $ cd pyfirebirdsql/tests $ python tests_event.py ('dsn=', 'localhost/3050:/Users/nakagami/py

Re: [firebird-python] Events

2012-03-01 Thread Pavel Cisar
Dne 1.3.2012 17:46, NimBiotics napsal(a): > Hello everyone. I'm currently working on an application that would heavily > depend on event handling but neither fdb nor firebirdsql handle events. > > Do I have any other option besides kinterbasdb? Help us implement events support in fdb or firebird

[firebird-python] Events

2012-03-01 Thread NimBiotics
Hello everyone. I'm currently working on an application that would heavily depend on event handling but neither fdb nor firebirdsql handle events. Do I have any other option besides kinterbasdb? Thanks in advanced!