The SQLUpdate function is a SQL that modifies the data in the source database with altered content.
void @SQLUpdate(int id, string tablename, string bindlist, string where);
Parameters
int id : Access number connected by SQLConnect
string tablename : Table Name
string bindlist : bind list to use
string where : WHERE clause
Return Value
None
Example
@SQLUpdate($AddrID, "Table1", "bindaddr", "");
Description : Modify the contents of the original database with the changed data.
Related Helps