Hola Carlos,
after applying the latest cvs commits, multiple rows are not being fetched.
The following code always returns only one row (previously was working
correctly):
public DataSet Categories()
{
FbConnection conn = new
FbConnection(ConfigurationSettings.AppSettings["ConnectionString"]);
conn.Open();
FbCommand cmd = new FbCommand("SP_CATEGORIES", conn);
cmd.CommandType = CommandType.StoredProcedure;
FbDataAdapter adapter = new FbDataAdapter();
DataSet ds = new DataSet();
adapter.SelectCommand = cmd;
adapter.Fill(ds);
adapter.Dispose();
cmd.Dispose();
conn.Close();
return ds;
}
Ciao,
Alessandro Petrelli.
|