SQLConnection Con = new SQLConnection("");
Con.Open();
SQLCommand Cmd = new SQLCommand();
Cmd.CommandType = CommanType.StoredProcedure();
Cmd.Connection = Con;
Cmd.CommandText = "SP_GetAllData";
SQLDataAdapter da = new SQLDataAdapter(Cmd,Con);
Dataset ds = new Dataset();
da.fill(ds);
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment