T
Tim Johnson
This code fails to compile saying SqlCeDataAdapte "does not contain a
definition for Fill":
using System;
using System.Data;
using System.Data.Common;
using System.Data.SqlServerCe;
using System.Windows.Forms;
SqlCeDataAdapter da = new SqlCeDataAdapter(sql, conn);
ds = new DataSet();
da.Fill(ds);
When I type "da." Intellisense only shows these items available:
RowUpdating
RowUpdated
DeleteCommand
InsertCommand
UpdateCommand
SelectCommand
What happened to Fill??? I thought it was available on both CE and SQL
desktop, according to all the books!
--
Tim Johnson
High Point Software, Inc.
www.high-point.com
(503) 312-8625
definition for Fill":
using System;
using System.Data;
using System.Data.Common;
using System.Data.SqlServerCe;
using System.Windows.Forms;
SqlCeDataAdapter da = new SqlCeDataAdapter(sql, conn);
ds = new DataSet();
da.Fill(ds);
When I type "da." Intellisense only shows these items available:
RowUpdating
RowUpdated
DeleteCommand
InsertCommand
UpdateCommand
SelectCommand
What happened to Fill??? I thought it was available on both CE and SQL
desktop, according to all the books!
--
Tim Johnson
High Point Software, Inc.
www.high-point.com
(503) 312-8625