Advertisement
Advertisement
| 01.24.2008 at 02:36PM PST, ID: 23109540 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: |
this.sQuery="select * from database_table"
System.Data.
IDataReader IReader = objConn.ExecuteReaderII("SECURITY", this.sQuery, true);
System.Data.
DataSet obj = new System.Data.DataSet ();
obj.Load(IReader, System.Data.
LoadOption.OverwriteChanges, new string[] { "available" });
//need to change this obj dataset's ID column to string.
if (obj.Tables.Count > 0)
{
if (!Cache.ContainsKey("report"))
Cache.Add("report", obj);
else
Cache[
"report"] = obj;
}
|