[Mysql] INSERT escape error

B

ByeBye 182971

Hi.

Folgendes Problem:

Code:
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 '\'123Test?\', \'Test3231i

Der Query:
Code:
INSERT INTO Boards VALUES (1, \'123Test?\', \'Test32131i usw kommt noch mehr\');

Eingabe erfolt über phpMyAdmin (2.2.0).

Weitere Infos: MySQL 4.1.12-standard auf localhost

Keine Ahnung woher der Fehler kommt aber schaut für mich irgendwie nach einem Escape-Problem aus

Gruß suf*****
 
Hallo!

Versuche es mal so:
SQL:
INSERT INTO `Boards` VALUES ('1', '\'123Test?\'', '\'Test32131i usw kommt noch mehr\'');
Gruss Dr Dau
 
Also ich glaube es lag an phpMyAdmin....

Habe den Query mit der Console ausgeführt und es lief einwandfrei

Danke für eure Hilfe aber hinter diesen Fehler werde ich wohl nie kommen
 
Zurück