[Mono-devel-list] Weird runtime crash

2005-05-20 Thread Peter Williams
Hi everyone, I have a weird runtime issue with a small Gtk# program that I have. It was working fine. I updated some resource files, recompiled, and now the runtime reliably segfaults very early on in the program's execution. No NullReferenceException, just SIGSEGV. Through Console.WriteLine's

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-20 Thread Hubert FONGARNAND
Hello, I've retested my apps with the new svn version... I can now log into my app without this System.IndexOutOfRangeException: Array index is out of range. But there's problem with some sql commands... with postgresql, oracle and mssql I think that it's when I combine several select

Re: [Mono-devel-list] merging two assemblies and related problems

2005-05-20 Thread Zoltan Varga
Hi, If you find strange bugs when running something under mono, while it works under MS.NET, please report it at bugzilla.ximian.com. Zoltan On 5/20/05, Vladimir Vukicevic [EMAIL PROTECTED] wrote: I've brought up this problem

Re: [Mono-devel-list] Problem with DbDataAdapter... RESOLVED

2005-05-20 Thread Hubert FONGARNAND
Hello I've found the last problems I had... The problem is when you do a fill with a null datetime in the result dataset... the problem is in method internal void ReadIDataRecord(int recordIndex, IDataRecord record, int[] mapping, int length) of the record cache class this method do a

Re: [Mono-devel-list] merging two assemblies and related problems

2005-05-20 Thread Eyal Alaluf
Hi, Vladimir. There is one 5 you didn't try. It's called MBEL http://www.cs.arizona.edu/mbel It's a Java based solution (of al things). It is capable of reading IL assemblies manipulating them and writing them back. Causing it to merge two assemblies requires definitely an effort but should be

Re: [Mono-devel-list] merging two assemblies and related problems

2005-05-20 Thread Jim Purbrick
Hi Vladimir, --- Vladimir Vukicevic [EMAIL PROTECTED] wrote: 3) Use RAIL (http://rail.dei.uc.pt/). I'm currently using RAIL and Mono-1.1.7 on Windows to transform assemblies. I initially had some problems getting the test application running on Mono-1.1.4, but Zoltan fixed them. So, try

Re: [Mono-devel-list] Play a mp3 with mono

2005-05-20 Thread Chris Turchin
You might want to look at Sonance or Muine, both of which is are mono based music players. Both use the GStreamer bindings for mono: http://monohandbook.monoforge.com/monkeyguide/gnome/bindings/gstreamer/gstreamer.html http://sonance.aaronbock.net/ http://muine.gooeylinux.org/ Regards, --chris

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-20 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Konstantin Triger wrote: Hello Hubert, There was a change during this week end: the Mainsoft changes were merged into the trunk (they were previously available at Mainsoft.System.Data branch). From the stack I suppose that PG provider does

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-20 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hubert FONGARNAND wrote: I've applied your patch... It corrects the problem with my postgresql app... Hi Hubert! What Npgsql version are you using?? I know that Konstantin patch adds much more reliability to the DbDataAdapter code, but I'd like

Re: [Mono-devel-list] Problem with DbDataAdapter...

2005-05-20 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Konstantin Triger wrote: Hello Hubert, Hi all! I'm completely agree that bugs are a bad thing, that's why I'm here to help you as soon as possible. The reason the DataAdapter code has changed is to solve other bugs, and the solution required

Re: [Mono-devel-list] Problem with DbDataAdapter... RESOLVED

2005-05-20 Thread Sureshkumar T
I guess the following is more proper fix. But, I am not sure why there is no GetDateTimeSafe in ISafeRecord and is there any reason to leave this to throw exception. Kosta could clear this. Hubert, can you please try this? [SNIP] Index: System.Data.Common/DataContainer.cs

[Mono-devel-list] Operating System in C# Project

2005-05-20 Thread Alejandro Serrano
Hi, Is anyone interested in starting a project for doing an operating system completely in managed code, à la Singularity that is being done in Microsoft? I don't know much C or C++, but I'm very knowledgeable on C# and MSIL. So the idea would be to start implementing the CLR in a way that it

Re: [Mono-devel-list] Operating System in C# Project

2005-05-20 Thread Kornél Pál
Is anyone interested in starting a project for doing an operating system completely in managed code, à la Singularity that is being done in Microsoft? An operating system cannot be written in managed code. If you will create something like an operating system using managed code it will be only a

Re: [Mono-devel-list] merging two assemblies and related problems

2005-05-20 Thread Vladimir Vukicevic
On 5/20/05, Jim Purbrick [EMAIL PROTECTED] wrote: Hi Vladimir, --- Vladimir Vukicevic [EMAIL PROTECTED] wrote: 3) Use RAIL (http://rail.dei.uc.pt/). I'm currently using RAIL and Mono-1.1.7 on Windows to transform assemblies. I initially had some problems getting the test application