Jump to content

MySQL Query Browser - Help!


vReg

Recommended Posts

Now i have the query browser in my office and i thought it was quite useful so i used the "Copy SQL to clipboard" function to copy the syntax to create the mysql table back at home in my query browser. but apparently im hitting lotsa funny errors and seems so buggy. even after i suceeded creating the table, i couldnt add new rows. anyone????

 

anyone any idea??

 

an example

DROP TABLE IF EXISTS `bls`.`tbl_company`;
CREATE TABLE  `bls`.`tbl_company` (
 `COMPANY_ID` int(10) unsigned NOT NULL auto_increment,
 `COMPANY_NAME` varchar(100) NOT NULL default '',
 `COMPANY_ADDRESS` varchar(100) NOT NULL default '',
 `COMPANY_TEL` varchar(45) NOT NULL default '',
 `COMPANY_FAX` varchar(45) NOT NULL default '',
 `COMPANY_COUNTRY` varchar(45) NOT NULL default '',
 `COMPANY_POSTALCODE` varchar(45) NOT NULL default '',
 `COMPANY_NEXHIBITOR` int(10) unsigned NOT NULL default '0',
 PRIMARY KEY  (`COMPANY_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Link to comment
https://forums.phpfreaks.com/topic/2710-mysql-query-browser-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.