Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread 2.04 b3 breaks ADO.NET EDBDataAdapter
Fri, Oct 1 2010 11:01 AMPermanent Link

Hedley Muscroft

Hi,

Just upgraded to 2.04 b3 (from 2.03 b19 which has been stable for ages).

Can't use it at all I'm afraid as EDBDataAdapter now seems to be broken. Here's some previous code (which works fine in 2.03) :-

       EDBDataAdapter adap = new EDBDataAdapter("select * from databases", con);
       DataTable tbl = new DataTable();
       adap.Fill(tbl); <- now throws...

"InvalidOperationException" No command text specified

I then tried the following :-

       EDBDataAdapter adap = new EDBDataAdapter("select * from databases", con);
       adap.SelectCommand.CommandText = "select * from databases";
       DataTable tbl = new DataTable();
       adap.Fill(tbl);

... thinking "surely it can't complain that there's no CommandText now!

Same error!

Look forward to a fix - thanks!
Fri, Oct 1 2010 11:12 AMPermanent Link

Hedley Muscroft

As a point of interest, I just tried 2.03 b22 and SAME PROBLEM!

I then went back to 2.03 b19 (which I've been using for ages) and it's all good again.
Sun, Oct 3 2010 1:35 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Hedley,

<< Can't use it at all I'm afraid as EDBDataAdapter now seems to be broken.
Here's some previous code (which works fine in 2.03) :- >>

I'm doing a new build today, so I'll make sure this is fixed.

--
Tim Young
Elevate Software
www.elevatesoft.com
Image