Re: [Ironpython-users] SQLite3

2011-07-05 Thread Jeff Hardy
On Fri, Jul 1, 2011 at 2:24 PM, Steve Baugh wrote: > Jeff, > > Thank you for doing the updated file. I have downloaded it. > > I have got it working but the plot thickens! > > I put the new IronPython.SQLite.dll + sqlite3.dll into the DLLs > directory. > Doing import sqlite3 gave the _sqlite3 not

Re: [Ironpython-users] SQLite3

2011-07-01 Thread Steve Baugh
Jeff, Thank you for doing the updated file. I have downloaded it. I have got it working but the plot thickens! I put the new IronPython.SQLite.dll + sqlite3.dll into the DLLs directory. Doing import sqlite3 gave the _sqlite3 not found error. I then put a copy of the dll in the same directory as

Re: [Ironpython-users] SQLite3

2011-06-30 Thread Steve Baugh
Thanks Jeff, I will try it soon, Steve On Wed, 2011-06-29 at 21:00 -0700, Jeff Hardy wrote: > Hi Steve, > Please download a new copy of the file. The old one was built against > a beta version of IronPython 2.7. It works in my quick testing. > > - Jeff > > On Wed, Jun 29, 2011 at 8:00 PM, Stev

Re: [Ironpython-users] SQLite3

2011-06-29 Thread Jeff Hardy
Hi Steve, Please download a new copy of the file. The old one was built against a beta version of IronPython 2.7. It works in my quick testing. - Jeff On Wed, Jun 29, 2011 at 8:00 PM, Steve Baugh wrote: > > Jeff, > > Thank you for your reply. > > I have downloaded > > IronPython.SQLite-2.7.0_ipy

Re: [Ironpython-users] SQLite3

2011-06-29 Thread Steve Baugh
Jeff, Thank you for your reply. I have downloaded IronPython.SQLite-2.7.0_ipy-2.7_clr-v4.0.zip but can't make it work. I have put the IronPython.SQLite.dll in the DLLs folder and put the sqlite3 folder under Lib. When I try: import sqlite3 in either ipy or ipy64 I get: ImportError: No mo

Re: [Ironpython-users] SQLite3

2011-06-29 Thread Jeff Hardy
You should be able to use IronPython.SQLite (https://bitbucket.org/jdhardy/ironpython.sqlite/). There's a 2.7-compatible build on the downloads page. It's not 100% compatible with CPython sqlite, but it's pretty darn close. - Jeff On Mon, Jun 27, 2011 at 2:26 PM, Steve Baugh wrote: > I am trying

[Ironpython-users] SQLite3

2011-06-27 Thread Steve Baugh
I am trying to port a Linux Python program to IronPython and WPF. This program makes use of sqlite3. I am not trying to use data aware contols, I just want to issue SQL commands and get the results from SELECT statements. I have been getting conflicting, and in some cases contradictory, informatio