You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Yasushi I. <ya...@ra...> - 2002-06-05 08:55:34
|
kinterbasdb is 20 times slower than gvib. Why is kinterbasdb so slow? kinterbasdb: $ time ./bench.py real 166m43.947s user 0m2.870s sys 0m2.360s gvib: $ time ./bench.py real 7m35.217s user 0m42.360s sys 0m12.490s My System is: Pentium III 650MHz, 256MB RAM Red Hat Linux 7.3(kernel 2.4.18) Python 2.1.3 FirebirdSS 1.0.0 kinterbasdb 3.0 GV Interbase Database Adapter(gvib) 0.9.6 http://www.zope.org/Members/bkc/gvibDA ---- #!/usr/bin/env python2.1 """ bench.py """ import sys, kinterbasdb database = kinterbasdb # import sys, gvib # database = gvib from os.path import basename def main(): for i in range(10000): try: db = database..connect(dsn='127.0.0.1:/home/ib/bench.gdb', user='foo', password='foo') # db = database.connect('127.0.0.1:/home/ib/bench.gdb', 'foo', 'foo') except: sys.stderr.write("%s: Cannot connect Database Server.\n" % basename(sys.argv[0])) raise cursor = db.cursor() sql = "INSERT INTO FOO VALUES(GEN_ID(GEN_FOO_ID, 1), '%d')" % i try: cursor.execute(sql) except: db.rollback() sys.stderr.write('%s: Database Insert Error: %s' % (basename(sys.argv[0]), sql)) raise db.commit() cursor.close() db.close() if __name__ == '__main__': main() |
From: Echeverria R. C. R. T. S.A.
<ce...@tr...> - 2001-04-11 15:53:50
|
Hi I'am testing interbase and your python module. I'am very impressed because most queries work very well and fast, but I have a problem... conn.dialect = 3 ...did not work. I got the following trace: Traceback (most recent call last): File "Prueba2.py", line 21, in ? c.dialect=3 File "kinterbasdb.py", line 210, in __setattr__ return _kinterbasdb.set_dialect(self._conn, value) AttributeError: set_dialect *** debug *** removing connection 0 I'am using Win98, Interbase 6.01 and Python 2.0 Thanks for your help Cristian Echeverria |
From: WIN Z. <za...@in...> - 2001-02-27 16:23:07
|
I am having trouble getting kinterbase to compile. Does anyone have a compiled dll that they could send me? Thanks Zanasi |
From: Mike <mo...@bi...> - 2000-12-26 06:02:37
|
Well, I'm feeling stupid. Last time I rely on the docs without checking the code. The docs say that there is a dialect property but evidently it has not been implemented yet. How about an update to the docs or the code? -----Original Message----- From: kin...@li... [mailto:kin...@li...]On Behalf Of Mike Sent: Monday, December 25, 2000 9:29 PM To: kin...@li... Subject: RE: [Kinterbasdb-help] Set Dialect -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Just so that there is a record in the mailing list archive. The way you set the dialect is through the connection objects dialect property. To use tables with date and array fields you need to set the dialect to 3. - -----Original Message----- From: kin...@li... [mailto:kin...@li...]On Behalf Of Mike Sent: Friday, December 22, 2000 10:56 PM To: Kinterbase (E-mail) Subject: [Kinterbasdb-help] Set Dialect - -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 When I try to set the dialect I get the following output. >>> curse.execute("SET SQL DIALECT 3") Traceback (most recent call last): File "<stdin>", line 1, in ? File "f:\python20\lib\kinterbasdb.py", line 105, in execute res=_kinterbasdb.execute(self.cur, sql) kinterbasdb.error: (-104, 'isc_dsql_prepare: Dynamic SQL Error. SQL error code = -104. Token unknown - line 1, char 4. SQL. ') Anyone know what is wrong? - -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com> iQA/AwUBOkRMiXpls1gKRg1AEQIT/wCgwTMW58aySBYZWM3i0u7NdTEV37UAnjW0 C9jEr7uiEIoZkMmhjN30/ty9 =4Zne - -----END PGP SIGNATURE----- _______________________________________________ kinterbasdb-help mailing list kin...@li... http://lists.sourceforge.net/mailman/listinfo/kinterbasdb-help -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com> iQA/AwUBOkgsh3pls1gKRg1AEQJQ5ACgyQG79SIcndJWKSlQgqv4mNqV6JcAnjIW KuoqWRncb3DeigiuqdPKTznF =mrvw -----END PGP SIGNATURE----- _______________________________________________ kinterbasdb-help mailing list kin...@li... http://lists.sourceforge.net/mailman/listinfo/kinterbasdb-help |
From: Mike <mo...@bi...> - 2000-12-26 05:29:49
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Just so that there is a record in the mailing list archive. The way you set the dialect is through the connection objects dialect property. To use tables with date and array fields you need to set the dialect to 3. - -----Original Message----- From: kin...@li... [mailto:kin...@li...]On Behalf Of Mike Sent: Friday, December 22, 2000 10:56 PM To: Kinterbase (E-mail) Subject: [Kinterbasdb-help] Set Dialect - -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 When I try to set the dialect I get the following output. >>> curse.execute("SET SQL DIALECT 3") Traceback (most recent call last): File "<stdin>", line 1, in ? File "f:\python20\lib\kinterbasdb.py", line 105, in execute res=_kinterbasdb.execute(self.cur, sql) kinterbasdb.error: (-104, 'isc_dsql_prepare: Dynamic SQL Error. SQL error code = -104. Token unknown - line 1, char 4. SQL. ') Anyone know what is wrong? - -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com> iQA/AwUBOkRMiXpls1gKRg1AEQIT/wCgwTMW58aySBYZWM3i0u7NdTEV37UAnjW0 C9jEr7uiEIoZkMmhjN30/ty9 =4Zne - -----END PGP SIGNATURE----- _______________________________________________ kinterbasdb-help mailing list kin...@li... http://lists.sourceforge.net/mailman/listinfo/kinterbasdb-help -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com> iQA/AwUBOkgsh3pls1gKRg1AEQJQ5ACgyQG79SIcndJWKSlQgqv4mNqV6JcAnjIW KuoqWRncb3DeigiuqdPKTznF =mrvw -----END PGP SIGNATURE----- |
From: Mike <mo...@bi...> - 2000-12-23 06:57:13
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 When I try to set the dialect I get the following output. >>> curse.execute("SET SQL DIALECT 3") Traceback (most recent call last): File "<stdin>", line 1, in ? File "f:\python20\lib\kinterbasdb.py", line 105, in execute res=_kinterbasdb.execute(self.cur, sql) kinterbasdb.error: (-104, 'isc_dsql_prepare: Dynamic SQL Error. SQL error code = -104. Token unknown - line 1, char 4. SQL. ') Anyone know what is wrong? -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com> iQA/AwUBOkRMiXpls1gKRg1AEQIT/wCgwTMW58aySBYZWM3i0u7NdTEV37UAnjW0 C9jEr7uiEIoZkMmhjN30/ty9 =4Zne -----END PGP SIGNATURE----- |
From: Mike <mo...@bi...> - 2000-12-18 07:27:24
|
I am getting errors when I do a select on a table with date fields. I tried bumping up the dialect level to 3 in my scripts but I get errors when I try to do that. Anyone know what's wrong? |
From: Mike <mo...@bi...> - 2000-12-12 04:02:04
|
I was finally able to get the makefile.win32 file to work. Since I couldn't find a place to submit changes I am submitting it here. I have attached the changes to this message. |
From: George T. <gth...@ex...> - 2000-12-11 17:19:30
|
I would be very interested in this as well :-) Thanks George George Thomson, Internet Service Team Leader ________________________________________________________________ Exceedia, Inc. direct tel:780.699.4344 tel:780.413.1521 fax:780.413.0474 Exceedia - the single authoritative source of operational data for your enterprise and partners "Exceedia... Be the first to know." http://www.Exceedia.com -----Original Message----- From: Mike [mailto:mo...@bi...] Sent: Sunday, December 10, 2000 11:02 PM To: kin...@li... Subject: [Kinterbasdb-help] Win32 DLL for Python 2.0 I am having trouble getting kinterbase to compile. Does anyone have a compiled dll that they could send me? Thanks Mike |
From: Mike <mo...@bi...> - 2000-12-11 06:13:07
|
I am having trouble getting kinterbase to compile. Does anyone have a compiled dll that they could send me? Thanks Mike |
From: kentsin <ke...@si...> - 2000-11-20 08:08:52
|
Dear Sir, Please kindly post a win32 dll for kInterbasdb for the Python2.0. Thanks in advance. Rgs, Kent Sin =================================================================== ·s®ö§K¶O¹q¤l¶l½c http://sinamail.sina.com.hk ¥ß§Y¤U¸ü SinaTicker http://sinaticker.sina.com.hk |