Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public void avtoincrement(string table)
  2. {
  3. SqlConnection sqlconnect = Conectiong();
  4. SqlCommand command = new SqlCommand(@"ALTER TABLE " +table+ " AUTO_INCREMENT=0", sqlconnect);
  5. command.ExecuteNonQuery();
  6. }
Add Comment
Please, Sign In to add comment