G
Guest
In c#, Microsoft sql 2000, the name of db is "tc",and i want to check the
table "csharp" is exist or not . if it isnot exist, create it.!
======================================
SqlCommand cmd = new SqlCommand();
connection.open();
sSQL = "...." // how to write it.
cmd.CommandText = sSQL;
cmd.ExceutNonQuery();
.....
other statement
=============================
table "csharp" is exist or not . if it isnot exist, create it.!
======================================
SqlCommand cmd = new SqlCommand();
connection.open();
sSQL = "...." // how to write it.
cmd.CommandText = sSQL;
cmd.ExceutNonQuery();
.....
other statement
=============================