Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-29 Thread Vernon Cole
Jeff: Thank you for your kind suggestion to use bitbucket. I don't think that would be a good idea. I already have to keep up three distributions of adodbapi -- on pywin32 and FePy as well as its own project. A fourth would be a bit too much. I would prefer to include django capability in the

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-29 Thread Jeff Hardy
On Thu, Oct 29, 2009 at 12:07 AM, Vernon Cole vernondc...@gmail.com wrote: Jeff:    Thank you for your kind suggestion to use bitbucket.  I don't think that would be a good idea.  I already have to keep up three distributions of adodbapi -- on pywin32 and FePy as well as its own project. A

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-29 Thread Vernon Cole
I am cross posting here my inquiry sent to db-sig about how to change paramstyles, along with the only response. If you feel that option #1 below is NOT the way to go, please say something now. -- Vernon Cole M.-A. Lemburg ✆ to me, db-sig show details Sep 26 Vernon Cole wrote: I am

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-29 Thread Seo Sanghyeon
2009/10/30 Vernon Cole vernondc...@gmail.com I am cross posting here my inquiry sent to db-sig about how to change paramstyles, along with the only response. If you feel that option #1 below is NOT the way to go, please say something now. M.-A. Lemburg ✆ Vernon Cole wrote: My question

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Seo Sanghyeon
Intro... I, together with Mark Rees, wrote most of adonet-dbapi code in 2006. 2009/10/28 Markus Törnqvist m...@nysv.org: Here's the connect function (in its entirety) from mssql.py def connect(connstr):    relevant_parts = [part for part in connstr.split(';') if not

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Markus Törnqvist
On Wed, Oct 28, 2009 at 10:53:45PM +0900, Seo Sanghyeon wrote: Intro... I, together with Mark Rees, wrote most of adonet-dbapi code in 2006. Hi :) 2009/10/28 Markus Törnqvist m...@nysv.org: Here's the connect function (in its entirety) from mssql.py def connect(connstr):    relevant_parts =

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Jeff Hardy
On Wed, Oct 28, 2009 at 7:53 AM, Seo Sanghyeon sanx...@gmail.com wrote: Indeed. The question is, what underlying Python DB-API 2 driver does django-mssql use? Is it http://pymssql.sourceforge.net/ ? It uses an old, modified version to Vernon Cole's adodb library that it ships with itself. On

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Jeff Hardy
2009/10/28 Markus Törnqvist m...@nysv.org: At this point I run into my skill deficiency; as I'm presented with the options to Debug or Close and Debug doesn't tell me anything, I dunno how to debug this. Any hints? If you run ipy with the -D flag (or set system.compilation/debug=true for

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Vernon Cole
Markus: Would you be so kind as to zip up and email to me the adonet-dbapi as you now have it patched? I will create a version which does not error out. (May take a few days.) -- Vernon 2009/10/28 Markus Törnqvist m...@nysv.org On Wed, Oct 28, 2009 at 10:53:45PM +0900, Seo Sanghyeon wrote:

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Dave Fugate
...@lists.ironpython.com] On Behalf Of Jeff Hardy Sent: Wednesday, October 28, 2009 7:30 AM To: Discussion of IronPython Subject: Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings 2009/10/28 Markus Törnqvist m...@nysv.org: At this point I run into my skill deficiency; as I'm presented

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Jeff Hardy
On Wed, Oct 28, 2009 at 10:23 AM, Vernon Cole vernondc...@gmail.com wrote: Markus:   Would you be so kind as to zip up and email to me the adonet-dbapi as you now have it patched? A better option IMO would be to create a fork on bitbucket and push changes there. That way I can pull back into

Re: [IronPython] Django 1.1 on IronPython 2.6rc2 findings

2009-10-28 Thread Seo Sanghyeon
2009/10/29 Jeff Hardy jdha...@gmail.com: How much overlap is there between your other adodb project and adonet-dbapi? I don't think there's any need to have two libraries that do the same thing for IronPython, so we might as well figure out what's different and work towards one library. My