^>
> public static EventsSelectAllDataSet EventsSelectAll(string ConnString)
> {
> AdoHelper OleDB =
> AdoHelper.CreateHelper(typeof(OleDb).Assembly.FullName,
> typeof(OleDb).FullName);
> EventsSelectAllDataSet _ds = new EventsSelectAllDataSet();
> OleDB.FillDataset(ConnString, CommandType.StoredProcedure,
> "LocationsSelectAll",_ds,new string[] {"Locations"});
> return _ds;
> }
>
full ack! Bin eben selbst darauf gesto�en:
public static EventsSelectAllDataSet EventsSelectAll(string ConnString)
{
AdoHelper OleDB = AdoHelper.CreateHelper(typeof(OleDb).Assembly.FullName,
typeof(OleDb).FullName);
EventsSelectAllDataSet _ds = new EventsSelectAllDataSet();
OleDB.FillDataset(ConnString, CommandType.StoredProcedure,
"EventsSelectAll",_ds,new string[] {"EventsDataTable"});
return _ds;
}
mu� es korrekt lauten. Sch$$$ copy'n'paste ;-)
Gruss
Alex
_______________________________________________
Asp.net mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/asp.net