vReg Posted October 21, 2005 Share Posted October 21, 2005 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; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.