Re: [Ironruby-core] How to access the inner exception information from .NET exceptions?

2011-01-26 Thread Sick Boy
Answered my own question after inspecting the exception methods, and the .NET System.Exception class. Base/Inner exception seems to be what I was mostly after: logger.debug [ "#{e.class}: #{e.message}", "Base Exception: #{e.GetBaseException}", "Inner Exception: #{e.InnerExcept

[Ironruby-core] How to access the inner exception information from .NET exceptions?

2011-01-26 Thread Sick Boy
Hi, I am wondering how I can expose the inner exception information within IronRuby. My program is throwing an exception only on one user's computer, the exception originates in a SelectItem method in WPF RibbonControlsLibrary, ComboBox. I am able to catch the exception and log it, by using

Re: [Ironruby-core] IR WPF Project, ActiveRecord sqlite3-ironruby writes slow, reads fast

2011-01-08 Thread Sick Boy
Only problem i've ran into with this method for now has been the usage of System::Int64 for Primary keys. In a join table it was storing the yaml representation of the Int64 object instead of the proper Integer value, as a quick patch I've applied the following but i'm sure there is a better sa

Re: [Ironruby-core] IR WPF Project, ActiveRecord sqlite3-ironruby writes slow, reads fast

2011-01-08 Thread Sick Boy
I went out of my way and decided to have a look at updating the SQlite dll. It seems the interface has changed since sqlite3-ironruby gem release. I have downloaded and put the Community.CsharpSqlite.dll in the native folder:http://code.google.com/p/csharp-sqlite/downloads/list?can=1&q=&colspec=F

Re: [Ironruby-core] interfacing with the Asynchronous Programming Model

2011-01-06 Thread Sick Boy
Hi, You can find the ir app.config included in the IronLanguages repository, iirc Bin/Debughttps://github.com/IronLanguages/main Personally I've found that no matter what you put in there at least for LibraryPaths / StdLib settings,if you have IronRuby installed it will not take your settings.

[Ironruby-core] IR WPF Project, ActiveRecord sqlite3-ironruby writes slow, reads fast

2011-01-06 Thread Sick Boy
Hello, I am since some weeks working with IronRuby.I do not consider myself a great programmer in neither Ruby or .NET, yet I really love Ruby, and in these past few weeks IronRuby and .NET in general has really grown on me; very powerful!So first; my gratitude for this amazing product, thanks

Re: [Ironruby-core] Location of ir.exe.config in IronRuby 1.1

2011-01-06 Thread Sick Boy
Hi, You can find the ir app.config included in the IronLanguages repository, iirc Bin/Debughttps://github.com/IronLanguages/main Personally I've found that no matter what you put in there at least for LibraryPaths / StdLib settings,if you have IronRuby installed it will not take your settings.