Hi all,
does anybody know if there exist a config var in PMA that define the style of generated tablenames ? Is there a rule for programmers ?
When I edit the structure of a field, PMA produces only "tablename" as table name. When I insert data it produces "dbname" . "tablename".
Example:
ALTER TABLE `table1` CHANGE `field3` `field3` INT( 14 ) NOT NULL ;
INSERT INTO `test`.`table1` ( `field1` , `field2` , `field3` ) VALUES ( '1', '2', '3' );
Thank you
Alex