From phd at phdru.name Mon Aug 8 15:18:01 2011 From: phd at phdru.name (Oleg Broytman) Date: Mon, 8 Aug 2011 17:18:01 +0400 Subject: [DB-SIG] SQLObject 1.1.2 Message-ID: <20110808131801.GD24811@iskra.aviel.ru> Hello! I'm pleased to announce version 1.1.2, a bugfix release of branch 1.1 of SQLObject. What is SQLObject ================= SQLObject is an object-relational mapper. Your database tables are described as classes, and rows are instances of those classes. SQLObject is meant to be easy to use and quick to get started with. SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite, Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB). Where is SQLObject ================== Site: http://sqlobject.org Development: http://sqlobject.org/devel/ Mailing list: https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss Archives: http://news.gmane.org/gmane.comp.python.sqlobject Download: http://pypi.python.org/pypi/SQLObject/1.1.2 News and changes: http://sqlobject.org/News.html What's New ========== Features & Interface -------------------- * A bug was fixed in SelectResults slicing that prevented to slice a slice (my_results[:20][1:5]). For a more complete list, please see the news: http://sqlobject.org/News.html Oleg. -- Oleg Broytman http://phdru.name/ phd at phdru.name Programmers don't die, they just GOSUB without RETURN. From Chris.Clark at ingres.com Fri Aug 12 05:09:49 2011 From: Chris.Clark at ingres.com (Chris Clark) Date: Thu, 11 Aug 2011 20:09:49 -0700 Subject: [DB-SIG] New dbapi driver for JDBC - jyjdbc Message-ID: <4E44997D.7000406@ingres.com> I've posted a new (incomplete) dbapi driver at http://code.google.com/p/jyjdbc/ It is a pure Jython JDBC driver, so if customization is needed it is much easier for a Python developer to modify and extend than the regular Java driver that ships with Jython. Right now it works with Ingres...... and only Ingres, adding support for other drivers should be fairly straight forward. If there is interest in that patches are welcome :-) Chris From Chris.Clark at ingres.com Wed Aug 24 07:54:30 2011 From: Chris.Clark at ingres.com (Chris Clark) Date: Tue, 23 Aug 2011 22:54:30 -0700 Subject: [DB-SIG] ANN: jyjdbc 0.0.2 now available Message-ID: <4E549216.9070707@ingres.com> The pure Jython (Python in the JVM) JDBC dbapi pep-249 driver, jyjdbc 0.0.2 is now available from: http://code.google.com/p/jyjdbc/ At the moment jyjdbc passes more of http://stuartbishop.net/Software/DBAPI20TestSuite/ than zxJDBC. I suspect I'm the only user of jyjdbc at the moment :-) I'm hoping to convince enough people to give jyjdbc a try so we can ditch zxJDBC. zxJDBC was useful when it was first released but I no longer find it useful and the bugs/deficiencies with it annoy me. Rather than gripe about it further I have an alternative, I think jyjdbc is going to be easier to maintain. If you are a Python developer using a database driver, you probably have enough development skills to help update this driver if there are problems. Right now the weakness of jyjdbc is a lack of testing with other drivers. I've got the start of a http://db.apache.org/derby/ test suite. If anyone with Derby experience is willing to help out please contact me. I keep getting timeout errors from the Embedded Derby Engine (irrespective of whether I use jyjdbc or zxjdbc). Chris From Chris.Clark at ingres.com Fri Aug 26 06:16:54 2011 From: Chris.Clark at ingres.com (Chris Clark) Date: Thu, 25 Aug 2011 21:16:54 -0700 Subject: [DB-SIG] ANN: jyjdbc 0.0.3 now available Message-ID: <4E571E36.4030000@ingres.com> The pure Jython (Python in the JVM) JDBC dbapi pep-249 driver, jyjdbc 0.0.3 is now available from: http://code.google.com/p/jyjdbc/ Main high light is that it can now be used as a drop in replacement for zxJDBC in most existing applications by simply replacing: from com.ziclix.python.sql import zxJDBC with: import jyjdbc as zxJDBC Chris From phd at phdru.name Tue Aug 30 18:04:49 2011 From: phd at phdru.name (Oleg Broytman) Date: Tue, 30 Aug 2011 20:04:49 +0400 Subject: [DB-SIG] SQLObject 1.1.3 Message-ID: <20110830160449.GE19217@iskra.aviel.ru> Hello! I'm pleased to announce version 1.1.3, a bugfix release of branch 1.1 of SQLObject. What is SQLObject ================= SQLObject is an object-relational mapper. Your database tables are described as classes, and rows are instances of those classes. SQLObject is meant to be easy to use and quick to get started with. SQLObject supports a number of backends: MySQL, PostgreSQL, SQLite, Firebird, Sybase, MSSQL and MaxDB (also known as SAPDB). Where is SQLObject ================== Site: http://sqlobject.org Development: http://sqlobject.org/devel/ Mailing list: https://lists.sourceforge.net/mailman/listinfo/sqlobject-discuss Archives: http://news.gmane.org/gmane.comp.python.sqlobject Download: http://pypi.python.org/pypi/SQLObject/1.1.3 News and changes: http://sqlobject.org/News.html What's New ========== Features & Interface -------------------- * Fixed a bug with Postgres - add quotes in "SET client_encoding" query. For a more complete list, please see the news: http://sqlobject.org/News.html Oleg. -- Oleg Broytman http://phdru.name/ phd at phdru.name Programmers don't die, they just GOSUB without RETURN.