Re: [IronPython] MissingMemberException on 2.6

2009-05-11 Thread Davy Mitchell
Hi Curt, Sorry reported the wrong version there. I run the 2.6 interpreter but have hard coded the build scripts to 2.01 ipy and the target folder has the 2.01 binaries. So it is all 2.01. Just tried the (same) compiled version on XP with the same result. I built a console app without issue which

[IronPython] adodbapi with ado.net? (on MONO?)

2009-05-11 Thread Vernon Cole
Question for the group: If I were to fork a version of adodbapi which used ado.net (rather than COM ado) ... 1) would it work any better/faster than the existing code on Windows? 2) is there any chance that it would run under MONO on Linux? -- Vernon Cole

Re: [IronPython] adodbapi with ado.net? (on MONO?)

2009-05-11 Thread Michael Foord
Vernon Cole wrote: Question for the group: If I were to fork a version of adodbapi which used ado.net (rather than COM ado) ... 1) would it work any better/faster than the existing code on Windows? 2) is there any chance that it would run under MONO on Linux? I don't know the answer to

[IronPython] IronPython 2.6 CodePlex Source Update

2009-05-11 Thread merllab
This is an automated email letting you know that sources have recently been pushed out. You can download these newer sources directly from http://ironpython.codeplex.com/SourceControl/changeset/view/49948. DELETED SOURCES

[IronPython] Running Ruby code from Python, which is running in Ruby

2009-05-11 Thread Douglas S. Blank
Perhaps you've seen this, but I ran across Tomáš Matoušek’s blog this weekend http://blog.tomasm.net/category/ironruby/ where he describes a little interactive Ruby shell that works something like: $ irb.exe repl.rb rb class C rb| def say_hello caller rb| puts #{caller} says hello to

Re: [IronPython] Running Ruby code from Python, which is running in Ruby

2009-05-11 Thread Tomas Matousek
There are still some issues (running Python code in Ruby didn't seem to work) If you run into any issues let us know - ideally file a bug at http://ironruby.codeplex.com or http://ironpython.codeplex.com including a repro. We would like to make the language interop as smooth as possible.

Re: [IronPython] MissingMemberException on 2.6

2009-05-11 Thread Davy Mitchell
Right. Going a bit mad trying to fix this :-) Tried a bit of reinstalling and rebooting to no avail. Log Name: Application Source:Application Error Date: 11/05/2009 20:22:23 Event ID: 1000 Task Category: (100) Level: Error Keywords: Classic User:

Re: [IronPython] MissingMemberException on 2.6

2009-05-11 Thread Dino Viehland
When you say you're running the 2.6 interpreter does that mean you're using 2.6 to compile and then run against 2.0? If so that probably won't work. Is there any chance you could attach a debugger to the dieing process and get the managed stack trace where things are blowing up?

Re: [IronPython] MissingMemberException on 2.6

2009-05-11 Thread Davy Mitchell
Hi Dino, When you say you're running the 2.6 interpreter does that mean you're using 2.6 to compile and then run against 2.0?  If so that probably won't work. No - all building is done using 2.01 and 2.01 assemblies are used in the target bin folder. I've uninstalled 2.6 now just to rule it

Re: [IronPython] Running Ruby code from Python, which is running in Ruby

2009-05-11 Thread Michael Foord
Wow - the Pyjama Project looks very impressive! Looking forward to trying it out. Michael Douglas S. Blank wrote: Perhaps you've seen this, but I ran across Tomáš Matoušek’s blog this weekend http://blog.tomasm.net/category/ironruby/ where he describes a little interactive Ruby shell that

Re: [IronPython] Groovy on the DLR

2009-05-11 Thread Curt Hagenlocher
Interesting. But if you look at the author's blog at http://gavingrover.blogspot.com/2009/05/groovys-groovier-roadmap.html, it sounds like the DLR part is a dead-end and that he plans to move back to Java. On Sun, May 10, 2009 at 12:57 AM, Dody Gunawinata empirebuil...@gmail.comwrote:

Re: [IronPython] adodbapi with ado.net? (on MONO?)

2009-05-11 Thread Curt Hagenlocher
In principle, using ADO.NET and a purely managed database driver would eliminate most native - managed transitions. So in particular, you shouldn't need to marshal string data back and forth any more. On the other hand, database and network I/O is still much more of a bottleneck than local

Re: [IronPython] Silverlight Application Hosting IronPython

2009-05-11 Thread Curt Hagenlocher
I don't know hardly anything about Silverlight, but it might be useful to know what error message you're getting when you fail to load System.Windows. Or if I misread and you're actually failing to import something from the System.Windows namespace in Python code, then it would be good to know

Re: [IronPython] FePy status update

2009-05-11 Thread Dino Viehland
On #4 I'm going to check-in the fix today - sorry for the delay! -Original Message- From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Seo Sanghyeon Sent: Saturday, May 09, 2009 3:05 AM To: Discussion of IronPython Subject: [IronPython] FePy

Re: [IronPython] adodbapi with ado.net? (on MONO?)

2009-05-11 Thread Seo Sanghyeon
2009/5/12 Vernon Cole vernondc...@gmail.com: Question for the group:  If I were to fork a version of adodbapi which used ado.net (rather than COM ado) ...  1) would it work any better/faster than the existing code on Windows?  2) is there any chance that it would run under MONO on Linux? 1.