Inserts a record into a database.
Syntax
DB_Insert(table, values)
Arguments
table
the table into which the data is inserted.
values
an array with values that you wish to insert.
Return value
No return value.
Example
You can insert a record into any table.
' Insert a record into the Cars table
Dim data
Set data = CreateDictionary()
data("make") = "Toyota"
data("type") = "RAV4"
data("price") = 16000
DB_Insert "Cars",data
See also: