ho un piccolo problema..
ho nel PC phpmyadmin 2.6.1 e nel server 2.6.1-pl2
se provo ad importare dal pc al server un db ho errori riguardo al charset..come mai visto ke è la stessa versione??
e poi, ho eliminato tutte le righe col charset ma da comunque errore ad esempio:
Messaggio di MySQL: Documentazione
#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE `carrello` (
`id` int(3) NOT NULL auto_incre
e la query è:
codice:
CREATE TABLE `carrello` (
`id` int(3) NOT NULL auto_increment,
`utente` text NOT NULL,
`prodotto` text NOT NULL,
`prezzo` text NOT NULL,
`data` date NOT NULL default '0000-00-00',
PRIMARY KEY (`id`)
) ;