RE: [IronPython] IronPython + Npgsql

2005-04-06 Thread Hector Miuler Malpica Gallegos
Functions in IronPython 0.6?  I will have to wait for that IronPython0.7 function with monkey >>> for p in Type.GetProperties(type("string")): ...  print p ... System.Exception: bad args to this method in <0x0019c> IronPython.Objects.ReflectedMethodBase:Call (object[]) in <0x001ef> IronPyt

RE: [IronPython] IronPython + Npgsql

2005-04-06 Thread Jim Hugunin
Hector Miuler Malpica Gallegos wrote: > thanks, just the problem in indexing, in C# Resultado[1], in python I > have not been able, solution: > Resultado.GetValue(1) This should work as easily in IronPython as in C#. In general, if things are more awkward in IronPython than in C# you should firs

RE: [IronPython] IronPython + Npgsql

2005-04-05 Thread Hector Miuler Malpica Gallegos
thanks, just the problem in indexing, in C# Resultado[1], in python I have not been able, solution: Resultado.GetValue(1) On lun, 2005-04-04 at 15:44 -0700, Martin Maly wrote: > There is known issue with indexing where IronPython may have trouble finding > the right indexer. > This may be what y

RE: [IronPython] IronPython + Npgsql

2005-04-04 Thread Martin Maly
There is known issue with indexing where IronPython may have trouble finding the right indexer. This may be what you are hitting. I am not familiar with Npgsql, but on .Net classes there is often property that you can access directly and bypass the access by index. Martin > On Monday, April 04,