how to run Make table query that i have in access in C# code ?
Posted
by Gold
on Stack Overflow
See other posts from Stack Overflow
or by Gold
Published on 2010-03-07T12:54:56Z
Indexed on
2010/03/08
0:30 UTC
Read the original article
Hit count: 266
hi
i have query (DO2) in access that makes a table and inserting any data.
how to run this query in C# code ?
i try this:
SQL = "Select * from DO2";
Cmd = new OleDbCommand(SQL, Conn);
Cmd.ExecuteNonQuery();
Cmd.Dispose();
but i get error
© Stack Overflow or respective owner