I
Irakli Lomidze
Dear Sirs.
I have Query like this;
string sql = "SELECT T_ID, T_ORDER, T_CAPTION FROM Codex_DTYPE; \n "+
"SELECT A_ID, A_ORDER, A_CAPTION FROM Codex_DAUTHOR; ";
SqlDataAdapter Da = new SqlDataAdapter(sql,Codex2004Connection);
DataSet ds1 = new DataSet("SZo");
Da.Fill(ds1);
All works Fine but, When I Generate Update,Insert,Delete code i gives error
message.
how i should generate code for it.
I have Query like this;
string sql = "SELECT T_ID, T_ORDER, T_CAPTION FROM Codex_DTYPE; \n "+
"SELECT A_ID, A_ORDER, A_CAPTION FROM Codex_DAUTHOR; ";
SqlDataAdapter Da = new SqlDataAdapter(sql,Codex2004Connection);
DataSet ds1 = new DataSet("SZo");
Da.Fill(ds1);
All works Fine but, When I Generate Update,Insert,Delete code i gives error
message.
how i should generate code for it.