This question is locked. New answers and comments are not allowed.
After executing a drop table the .insert() methods do not create a new table, instead they try to insert as if the table still existed, even after executing .sync()
To the .insert() method work as expected and create a new table one have to execute .close() and then .open() again.
Should'nt .sync() be enough? If not, what is the rule? When to use .sync() and when reopen the table??
To the .insert() method work as expected and create a new table one have to execute .close() and then .open() again.
Should'nt .sync() be enough? If not, what is the rule? When to use .sync() and when reopen the table??