[Ironpython-users] Missing os.getuid()

2014-02-07 Thread Doug Blank
I'm trying to figure out if the missing os.getuid() is a bug in IronPython. On the one hand, this is to be defined for Unix, where os.name == "posix" (when running IronPython on Unix). On the other hand, what should it return when sys.platform == "cli" and os.name == "nt"? It seems that many pro

Re: [Ironpython-users] IronPython SQLite interface

2014-02-07 Thread Doug Blank
On Fri, Feb 7, 2014 at 7:47 AM, Slide wrote: > Do you get a specific error message? > Sorry, yes: Traceback (most recent call last): File "", line 1, in _sqlite3.OperationalError: unable to open database file Does this work for you? I get this error running latest ipy.exe (Mono 2.10, Ubuntu

Re: [Ironpython-users] IronPython SQLite interface

2014-02-07 Thread Slide
Do you get a specific error message? On Fri, Feb 7, 2014 at 5:37 AM, Doug Blank wrote: > Just recently discovered the sqlite3 port for IronPython, but having some > basic trouble: > > This works fine: > > import sqlite3 > sqlite3.connect("test.db") > > but this doesn't: > > import sqlite3 > sql

[Ironpython-users] IronPython SQLite interface

2014-02-07 Thread Doug Blank
Just recently discovered the sqlite3 port for IronPython, but having some basic trouble: This works fine: import sqlite3 sqlite3.connect("test.db") but this doesn't: import sqlite3 sqlite3.connect("/home/dblank/test.db") Any ideas? -Doug ___ Ironpyt

Re: [Ironpython-users] Fwd: pyzmq can be used with ironpython

2014-02-07 Thread Doug Blank
FYI, I started integrating our IronPython (and other languages) system, named Calico, with IPython in the last few weeks. I ended up writing an IPython "kernel" (the language backend) in C#: https://bitbucket.org/ipre/calico/src/master/Source/Calico/ZMQServer.cs It isn't complete yet (need to add