G
Guest
Hi,
I develop a application for Windows CE with SqlCE database.
So I reference
System.SqlServerCe and System.Data
A part of my code is :
DataSet ds = new DataSet("MyDataSet");
SqlCeConnection sqlConn = new SqlCeConnection("MyConnectionString");
SqlCeDataAdapter da = new SqlCeDataAdapter();
da.SelectCommand = new SqlCeCommand("MySQLString", sqlConn);
and then, I can't find the method
..Fill() for the DataAdapter
I'd like to precise that it works fine with a classic Widows application.
thanks for help.
(I hope the question is in the good discussion group)
Herve
I develop a application for Windows CE with SqlCE database.
So I reference
System.SqlServerCe and System.Data
A part of my code is :
DataSet ds = new DataSet("MyDataSet");
SqlCeConnection sqlConn = new SqlCeConnection("MyConnectionString");
SqlCeDataAdapter da = new SqlCeDataAdapter();
da.SelectCommand = new SqlCeCommand("MySQLString", sqlConn);
and then, I can't find the method
..Fill() for the DataAdapter
I'd like to precise that it works fine with a classic Widows application.
thanks for help.
(I hope the question is in the good discussion group)
Herve