-
-
Notifications
You must be signed in to change notification settings - Fork 0
SlDatabase Insert Into
Milkenm edited this page May 9, 2019
·
1 revision
Syntax:
SlDatabase _Database = new SlDatabase();
_Database.InsertInto(<TABLE>, <FIELD/S>, <VALUE/S>)# TABLE: The table to insert the data into.
# FIELD/S: The name of the fields to insert data.
# VALUE/S: The data.
Example:
SlDatabase _Database = new SlDatabase();
_Database.InsertInto("Users", "ID, Name, Password", "1, 'User1', 'Pass1'").GetAwaiter();