M
Matthew Louden
using System.Data;
using System.Data.SqlClient;
//etc...
SqlConnection conn = new SqlConnection(connString);
SQLDataSetCommand myCmd = new SQLDataSetCommand("select * from Test;",
conn);
DataSet ds = new DataSet();
myCmd.FillDataSet(ds, "test");
Compile Error:
The type or namespace name 'SQLDataSetCommand' could not be found (are you
missing a using directive or an assembly reference)?
The type or namespace name 'myCmd' could not be found (are you missing a
using directive or an assembly reference)?
any ideas??
using System.Data.SqlClient;
//etc...
SqlConnection conn = new SqlConnection(connString);
SQLDataSetCommand myCmd = new SQLDataSetCommand("select * from Test;",
conn);
DataSet ds = new DataSet();
myCmd.FillDataSet(ds, "test");
Compile Error:
The type or namespace name 'SQLDataSetCommand' could not be found (are you
missing a using directive or an assembly reference)?
The type or namespace name 'myCmd' could not be found (are you missing a
using directive or an assembly reference)?
any ideas??