[Mono-dev] Solved: Re: Problem with parameters using Odbc/ADO.NET/Sybase 9.0.2 ASA

2007-01-03 Thread Mads Bondo Dydensborg
tirsdag 02 januar 2007 18:35 skrev Daniel Morgan: FreeTDS Project is here: [...] Thanks for all your pointers. Unfortunately, Sybase ASE is not an option for me - while ASA is a must. (Sigh). It turns out, that it was all my bad. Odbc does not support named parameters, except when calling

Re: [Mono-dev] Solved: Re: Problem with parameters using Odbc/ADO.NET/Sybase 9.0.2 ASA

2007-01-03 Thread Nagappan
Hi, Could you please send your changes ? svn diff SqlTest.cs SqlTest.diff send SqlTest.diff, to the list Thanks Nagappan Mads Bondo Dydensborg wrote: tirsdag 02 januar 2007 18:35 skrev Daniel Morgan: FreeTDS Project is here: [...] Thanks for all your pointers.

Re: [Mono-dev] cosmetic sqlsharpgtk patch to install exe.config

2007-01-03 Thread atsushi eno
Hi Daniel, For now I'll rename .config.in to .config and checkin the fix. My guess is that we could use DbProviderFactories (sys.data 2.0 class) instead of its own configuration syntax, and import some additional settings from custom configuration file (.sqlsharpgtk?). But well, you know, I'm

Re: [Mono-dev] Exception catching in C...

2007-01-03 Thread Robert Jordan
Thomas Wiest wrote: Hey, I'm embedding Mono and I'd like to know if there's a way for C to catch all unhandled exceptions. From this line on the interop page, it seems it is possible: It is very important that the unmanaged code not propagate any exceptions -- it must catch all

Re: [Mono-dev] Solved: Re: Problem with paramete rs using Odbc/ADO.NET/Sybase 9.0.2 ASA

2007-01-03 Thread Mads Bondo Dydensborg
onsdag 03 januar 2007 10:36 skrev Nagappan: Hi, Could you please send your changes ? Yes, I can do that, but I do not think it makes sense. The SqlTest.cs program seems to be made to test things specific to MS SqlServer. I had to remove some stuff, such as MS specific SQL statements, to

Re: [Mono-dev] TagLib docs generation?

2007-01-03 Thread Andrés G. Aragoneses [ knocte ]
Andrés G. Aragoneses [ knocte ] escribió: I've noticed the following type of files: http://svn.myrealbox.com/source/trunk/taglib-sharp/docs/en/TagLib/SupportedMimeType+%3c%3ec__CompilerGenerated1+%3c%3ec__CompilerGenerated3.xml

[Mono-dev] Bug in System.Web.HttpApplication

2007-01-03 Thread Vladimir Krasnov
Hello, There is a bug in PreStart method, it should not apply invariant culture. Please review attached patch that fixes this bug. Vladimir HttpApplication.cs.patch Description: HttpApplication.cs.patch ___ Mono-devel-list mailing list

[Mono-dev] ASP.NET ObjectDataSource problem

2007-01-03 Thread Dariusz Linowski
Hi, I have some problem with ASP.NET application under mono 1.2.2.1-0 (mod-mono-serwer2) with sys.web library when my ObjectDataSource type call my business class I received error: System.InvalidOperationException : Type not found: ShipperDataLayer. My piece of default.aspx code:

Re: [Mono-dev] ASP.NET ObjectDataSource problem

2007-01-03 Thread Marek Habersack
On Wed, 3 Jan 2007 13:59:35 +0100, Dariusz Linowski [EMAIL PROTECTED] scribbled: Hello, Hi, I have some problem with ASP.NET application under mono 1.2.2.1-0 (mod-mono-serwer2) with sys.web library when my ObjectDataSource type call my business class I received error:

Re: [Mono-dev] ASP.NET ObjectDataSource problem

2007-01-03 Thread Marek Habersack
On Wed, 3 Jan 2007 14:20:30 +0100, Marek Habersack [EMAIL PROTECTED] scribbled: [snip] asp:ObjectDataSource ID=ObjectDataSource1 runat=server SelectMethod=GetShippers TypeName=ShipperDataLayer/asp:ObjectDataSource The immediate fix is to put the business object in a binary dll

[Mono-dev] [PATCH] unbreak postbacks (fix for r70294)

2007-01-03 Thread Marek Habersack
Hello, The diff applied in r70294 will cause the page to fail any postbacks done with JavaScript if validators are absent from the page. The attached diff adds a check for whether ValidateOnSubmit function is present in the document. Please review best regards, marek Index: Page.cs

[Mono-dev] Error parsing href values

2007-01-03 Thread APS
In mono 1.1.5 if the parser find an html tag like A href=\HOME PAGE/A with the only the \ inside href it doesn't understand well the tag and it fails parsing the page. It after that tag there's some asp.net control it's not loaded and the page throws and exception of type

Re: [Mono-dev] [PATCH] unbreak postbacks (fix for r70294)

2007-01-03 Thread joel reed
I've experienced this breakage too and fixed in my local tree, but haven't posted. Thanks for beating me to it. Accd to: http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Functions#Example:_Determining_whether_a_function_exists This might be better: if ((typeof

Re: [Mono-dev] [PATCH] unbreak postbacks (fix for r70294)

2007-01-03 Thread Miguel de Icaza
Hello, The diff applied in r70294 will cause the page to fail any postbacks done with JavaScript if validators are absent from the page. The attached diff adds a check for whether ValidateOnSubmit function is present in the document. Please review Please commit, thanks!

[Mono-dev] [PATCH] Refactor some uses of MonoGenericContext

2007-01-03 Thread Raja R Harinath
Hi, I'm working on removing the need for MonoGenericContext. As a preliminary, I've refactored some uses of MonoGenericContext and create it on demand, and also to clarify some invariants. This will be followed by a few patches to cleanup the existing implementation of the current generics

Re: [Mono-dev] Build is stuck?

2007-01-03 Thread Wade Berrier
Hi, I've 'unstuck' the arm build, although it is failing... Thanks, Wade On Sun, 2006-12-31 at 12:27 +0100, Thomas Strecker wrote: Hello, I'm not sure who to contact, so I'll try this way. The debian-31-arm build (http://mono.ximian.com/monobuild/python/monobuild.py) is stuck for a long

Re: [Mono-dev] ASP.NET ObjectDataSource problem

2007-01-03 Thread Konstantin Triger
Title: RE: [Mono-dev] ASP.NET ObjectDataSource problem Hello Marek, Can you explain better your fix? According to MSDN's ObjectDataSource.TypeName: Therefore, the value of the TypeName property can be a partially qualified type for code that is located in the Bin or App_Code directories or

Re: [Mono-dev] ASP.NET ObjectDataSource problem

2007-01-03 Thread Marek Habersack
On Wed, 3 Jan 2007 13:14:13 -0800, Konstantin Triger [EMAIL PROTECTED] scribbled: RE: [Mono-dev] ASP.NET ObjectDataSource problem Hello Marek, Can you explain better your fix? According to MSDN's ObjectDataSource.TypeName: Therefore, the value of the TypeName property can be a

Re: [Mono-dev] [PATCH] unbreak postbacks (fix for r70294)

2007-01-03 Thread Marek Habersack
On Wed, 03 Jan 2007 10:15:43 -0500, joel reed [EMAIL PROTECTED] scribbled: Hello Joel, I've experienced this breakage too and fixed in my local tree, but haven't posted. Thanks for beating me to it. Accd to:

Re: [Mono-dev] [PATCH] unbreak postbacks (fix for r70294)

2007-01-03 Thread Christian Birkl
2007/1/3, Marek Habersack [EMAIL PROTECTED]: if ((typeof ValidatorOnSubmit == 'function') !ValidatorOnSubmit()) return; How backwards compatible, re javascript version, this code is? The typeof operator exists since version 1 of javascript/ecmascript and every object which implements