Wednesday, July 4, 2018

Data Manipulation "Insert"

To create new records in the database, use the insert() method on the table. The
data is first set on the table buffer by assigning values to fields. The data is then
committed to the database by calling the insert() method.



1
2
3
4
custTable custTable;
custTable.accountNum = "1234";
custTable.Currency = "USD";
custTable.insert();

Best Regards,
Hossein Karimi

No comments:

Post a Comment

Configure the Firewall on the Enterprise Portal Server

After you install Enterprise Portal, enable Web Server (HTTP) in Windows Firewall. If you do not enable the web server in Windows Firewall...