Create Record Without Form

What is the best way to create a record in a table without specifying a form…Something that will be friendly with different databases…

Thanks

Hi James,

You can simply create a foundset from a connection/table and start working with that like you would with a foundset of a form.

var _fs = databaseManager.getFoundSet("myConnectionName","myTableName");
_fs.newRecord();
_fs.myColumn = "myValue";

Hope this helps.