Insert records in a special case

Hi,
I created a form using solutionModel. The data source of this form is based on a query. There is a button in that form. The function of that button is to insert a record into another table. Is it possible to do this in servoy?

Thanks,

Sure you can!

Create a form based on that table and you can insert a record in the table on that form.

You don’t need to create a form on a table to be able to insert records into it.

Having a relation to that table will allready give you the ability to create a related record.

If you want to do the creation without even a relation, you can get yourself a foundset object using databaseManager.getFoundset(server, table);

Paul