Guest User

Untitled

a guest
Jul 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. ADODB.Recordset tcn = new ADODB.Recordset();
  2.  
  3. tcn.Open("SELECT * FROM <TABLE_NAME>",dcn,1,3);
  4. tcn.AddNew();
  5. tcn.Fields["path"].Value=<someValue>;
  6. tcn.Fields["moodCategory"].Value=<someValue1>;
  7. tcn.Update();
  8. tcn.Close();
Add Comment
Please, Sign In to add comment