MySQL Forums
Forum List  »  Newbie

Re: Data disappearing from mysql database
Posted by: Peter Brawley
Date: December 27, 2017 11:39AM

This is a local or online mysql instance?

MySQL version?

Let's see the Show Create Table results for the tables in question, along with results of ...

select * from information)schema.tables
where table_schema = '<your db name>"
and table_name in( <list of relevant quoted table names> );

... the latter before you use your forms to add a couple of rows, and again after when the rows appear to have disappeared.

Also check the mysql error log for entries that are relevant to the issue.

Options: ReplyQuote


Subject
Written By
Posted
Re: Data disappearing from mysql database
December 27, 2017 11:39AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.