[IronPython] mono packages for ironpython

2009-07-29 Thread Ivan Porto Carrero
Hi I've added the ironpython mono package to the ironruby mono CI server. It is slightly different from the windows package it doesn't have the licenses included nor does it have the 64bit builds and the pyc.py file. The tutorial is also not in the github repository so I couldn't include that

[IronPython] SQLite

2009-07-29 Thread Kelie
Hello, Is SQLite currently supported in IronPython? If not, is SQLite .NET from http://sqlite.phxsoftware.com/ the best alternative? Thanks. ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] SQLite

2009-07-29 Thread Brian Curtin
On Wed, Jul 29, 2009 at 12:51, Kelie kf9...@gmail.com wrote: Hello, Is SQLite currently supported in IronPython? If not, is SQLite .NET from http://sqlite.phxsoftware.com/ the best alternative? Thanks. sqlite3 is implemented as a C extension, and as such, does not currently work. I've

Re: [IronPython] SQLite

2009-07-29 Thread Harry Pierson
We don't support the CPython sqlite3 module, but I would expect the System.Data.SQLite DLL to work with IronPython. I imagine it would be possible to build a sqlite3 compatible wrapper around System.Data.SQLite, but I don't know if anyone has done that. Harry -Original Message- From:

Re: [IronPython] SQLite

2009-07-29 Thread Bruce Bromberek
In Cpython I use SQLite, in Iron Python I've taken to using SQL Server Compact Edition. But then again I am only writing for the windows platform. On Wed, Jul 29, 2009 at 1:19 PM, Harry Pierson harry.pier...@microsoft.comwrote: We don't support the CPython sqlite3 module, but I would expect

Re: [IronPython] SQLite

2009-07-29 Thread Dody Gunawinata
If not, is SQLite .NET from http://sqlite.phxsoftware.com/ the best alternative? Yes. That library is solid. I have used them in productions. On Thu, Jul 30, 2009 at 12:04 AM, Bruce Bromberek bruce.brombe...@gmail.com wrote: In Cpython I use SQLite, in Iron Python I've taken to using SQL

[IronPython] Project versions updated to 2010

2009-07-29 Thread Tomas Matousek
We have just updated ToolsVersion attribute in .csproj files included in IronPython and IronRuby solutions to 4.0. This change will soon show up in CodePlex and GIT sources. It allows to open these projects in Visual Studio 2010 (using IronPython4.sln or Ruby4.sln). The binaries produced by

Re: [IronPython] SQLite

2009-07-29 Thread Jeff Hardy
On Wed, Jul 29, 2009 at 12:19 PM, Harry Piersonharry.pier...@microsoft.com wrote: We don't support the CPython sqlite3 module, but I would expect the System.Data.SQLite DLL to work with IronPython. I imagine it would be possible to build a sqlite3 compatible wrapper around System.Data.SQLite,

Re: [IronPython] SQLite

2009-07-29 Thread Seo Sanghyeon
2009/7/30 Kelie kf9...@gmail.com: Is SQLite currently supported in IronPython? If not, is SQLite .NET from http://sqlite.phxsoftware.com/ the best alternative? Seems so. Others have replied about this. One alternative was not mentioned in this thread. That is, CPython's SQLite module('s