1
は、これは私がノードJS挿入MySQLのdoesntの仕事
var insertedData = {
name: 'testname',
score: '1337'
};
connect.query('INSERT INTO table SET ?', insertedData, function(error, result){
を使用し、これは私が
{ [Error: ER_PARSE_ERROR: 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 'table SET
name
= 'Hek',score
= '12'' at line 1]code: 'ER_PARSE_ERROR', errno: 1064, sqlState: '42000',index: 0 }
良いが、その挿入文は実際に。まだ間違っています – Shaharyar
@Shaharyar 'INSERT ... SET'はMySQLで有効な構文です。これは標準のANSIではなく、MySQLにとってはまったく問題ありません。 – Mureinik
ありがとう、それは働いた –