I created a database with column names without space as you have mentioned, Now I am able to update the table but when I click add row and fill the rows in the table and click update, Rest of the table data in the database is also replaced with the last updated data showing the whole database repeating the same row values for the whole table.
when I give a primary key to the ID column and add data into the table in the form and i click update I get the following error,
SQL error updating database source SPACE1 update test.space set column3=&&{column3}, column2=&&{column2}, column1=&&{column1}, id=&&{id} - Duplicate entry '4' for key 'PRIMARY'
I have not entered a duplicate value for the ID ,Now how can i make the form create a new row in the database instead of replacing the whole table with with the latest updated datea when I click the update button.