The 'DatabaseSetConnection' function changes the connection and the table of Database object.
void DatabaseSetConnection(string class_name, string connection, string table);
Parameters
string class_name : Class name of Database object.
string connection : Connection that you want to set.
string table : Table that you want to set.
Return Value
None
Example
@DatabaseSetConnection("Database1","c:\\ex\\example.mdb","Table1");
Description : The connection of 'Database1' is changed into 'C:\EX\EXAMPLE.mdb' and the table of 'Database1' is changed into 'Table1'.