Deprecated
This function is deprecated, and we recommend using the DB:Insert() function from Database API.
Inserts a new record into the database.
Syntax
Add()
Arguments
No arguments.
Return value
No return value.
Example
Insert new record into the database:
dal.Table("EventsTable").Value("event")="First event"
dal.Table("EventsTable").Value("public")="yes"
dal.Table("EventsTable").Add()
The corresponding SQL query:
Insert into EventsTable (event,public) values ('First event','yes')
See also: