deleted
Posted: Sat 29 Feb 2020 17:46
deleted
Discussion forums for open issues and questions concerning database tools, data access components and developer tools from Devart
https://forums.devart.com/
Run Tools > SQLite > DataSet Wizard, select your existing DataSet, press "Configure commands" on the "Setup individual data tables" step. Open the "Command Generator" tab, press "Get Table Fields".How can I easily reload only the id column after saving a row?
Code: Select all
INSERT INTO main.departments (department) VALUES (:department);
SELECT id FROM main.departments WHERE id = :p1
Some value should be provided to the Not Null property of DataTable.Why do I have to set the DataTable to generate another ID?