MySql
How do you repair a corrupt MySQL table? - 2007/07/08
Hello, Error: Table ‘tbl_ name’ doesn’t exist databasename_tablesname.frm can’t open If you get either of the following errors, it usually means that no table exists in the current database with the given name: Table ‘tbl_name’ doesn’t exist Can’t find file: ‘tbl_...
Mysql error : Can't create new tempfile: '*.TMD file . - 2007/07/08
Hello, If you are getting “Can't create new tempfile: 'tablesname.TMD file “ error while repairing corrupted database tables please try use following command to fix it Solution. myisamchk -r -f tables.MYI Regard’s Stacy....
What is the advantge and disadvantage of mysql_connet() and mysql_pconnect() ? - 2007/06/02
mysql_pconnect() will maintain a persistent connection to the database. Whenever your script calls the connect to database function, it first searches already existing connections to the database and if exists it will use the same connection to connect to the database, if not it will open a new conn...