99% of the times I use editing data in SQL grid, it is in my little test table:
SELECT * FROM mpa_test_table
When I try edit data I get this annoying thing:
"
These query results are not updateable.
Include the ROWID to get updateable results.
"
But do I REALLY HAVE to write the ROWID or FOR UPDATE?
You guys have made so many automatizations. Can't you make this implicit? Just select the rowid automatically if there is only 1 table involved.
SELECT * FROM mpa_test_table
When I try edit data I get this annoying thing:
"
These query results are not updateable.
Include the ROWID to get updateable results.
"
But do I REALLY HAVE to write the ROWID or FOR UPDATE?
You guys have made so many automatizations. Can't you make this implicit? Just select the rowid automatically if there is only 1 table involved.