[Mono-dev] Re: [Mono-devel-list] System.Data : DataTable.Select performance

2005-09-20 Thread tsureshkumar
@@ -193,9 +206,14 @@ return false; } - if (_filter != filter) - return false; + if (_filter != null) { + if (!_filter.Equals (filter)) +

Re: [Mono-dev] RE: [Mono-devel-list] System.Data : DataTable.Select performance

2005-09-20 Thread tsureshkumar
Boris Kirzner wrote: Hello Suresh, @@ -193,9 +206,14 @@ return false; } - if (_filter != filter) - return false; + if (_filter != null) { +

Re: [Mono-dev] Odbc-Exception-Error

2005-08-17 Thread tsureshkumar
Jan Waiz wrote: Hi Folks, big Trouble in China! J Working with ODBC on a PostgreSQL. While the ODBC did not support named Parameters and to be save about Signs like the ’ in Textboxes, i am building my Update-Statements like this: cStmnt = “UPDATE ComanySTD SET” + “Name1 = ?,”

Re: [Mono-dev] Doc for odbc

2005-08-11 Thread tsureshkumar
Rafael Teixeira wrote: That is because interest in the ODBC provider is low, as using specific providers is much better (performance/easy-of-use/easy-of-debugging wise). When an application wants to interoperate with multiple databases simultaneously or when you want to migrate between

Re: [Mono-dev] Adding data to a dataset question

2005-08-10 Thread tsureshkumar
Paul F. Johnson wrote: Hi, I'm trying to add multiple lines to a dataset but keep hitting the same problem. Now, I can get around the problem, but I'm not happy with how I have to do it. // create a few rows and add them to the DataTable DataRow

[Mono-devel-list] ADO.NET command builders.

2005-08-05 Thread tsureshkumar
I've checked in a patch for DbDataReader.Update () to reverse the order of raising RowUpdating event and setting values for the parameters. So, the providers don't have to set the values for the parameter themselves. The update method identifies the correct row version from the Parameter's

Re: [Mono-devel-list] RowFilter, Select expression, DataTable.GetErrors() bugs?

2005-08-02 Thread tsureshkumar
bandito wrote: Hello all. I'm using mono 1.1.8.2 and the MySql connector (1.0.4.20163) First, I'm having this problem with the RowFilter expression. I want to do a DataTable.Select(someFilterHere), but if the filter contains a single quote, I cannot escape it. For example string filter =

Re: [Mono-devel-list] MS-SQL Stored Procedure Return Value Issue

2005-08-01 Thread tsureshkumar
rightnow, mono SqlClient does not execute stored procedures through RPC call. changing parameter name to @RETURN_VALUE should work. suresh. JD Conley wrote: Hey Guys, We're working on getting our SoapBox Server product ported over to Mono and we can't seem to get past this strange SQLClient

Re: [Mono-devel-list] Patch for ForeignKeyConstraint .cs

2005-07-21 Thread tsureshkumar
Boris Kirzner wrote: Hello all, Attached is a proposed patch for ForeignKeyConstraint : - IsConstraintViolated() should check also for Table.EnforceConstraints (for the case dataset enforce constraints = false, but datatable enforce constraints = true) If no one objects, I'll commit. Boris

Re: [Mono-devel-list] Command Builder

2005-07-18 Thread tsureshkumar
Daniel Morgan wrote: Since there exists a command builder for SqlClient and OracleClient, is there a plan to create a command builder for Sybase and ODBC? Yes. There is a plan to do for ODBC, but I am not working on it right now. Any patches for enabling command builder for Sybase is welcome.

Re: [Mono-devel-list] DataView, its very weird history and its future

2005-07-14 Thread tsureshkumar
Marc Haisenko wrote: Hi folks, while investigating DataView.cs and bugs related to it I found the history of this file to be a little weird. First a bit of background: I work for a company that works on an industry project (GUI for an industrial laser) which will run on Portable .NET (aka

Re: [Mono-devel-list] IBM DB2 V8.2 and Mono IBM.Data.DB2 Provider (Linux)

2005-07-07 Thread tsureshkumar
Thomas Lazar wrote: Hi there. I'm evaluating mono for my firm. Requirement is IBM DB2 V8.2 data access. Unhandled Exception: System.IndexOutOfRangeException: name in 0x00093 IBM.Data.DB2.DB2DataReader:GetOrdinal (System.String name) in (wrapper remoting-invoke-with-check)

[Mono-devel-list] Re: Patch for standardizing Mainsoft DataSetTest tests for System.Data

2005-06-23 Thread tsureshkumar
Eyal Alaluf wrote: Hi, all. The attached patch replaces the Mainsoft System.Data.DataSet tests with a standardized Mono tests style test - collecting a lot of separate per-method test classes into one test class that tests DataSet. One issue that I'd like to mention is that I used as namespace