Maria db を使用しています。値がデータベースに挿入されていません。ルートから Json 配列として値を渡しています。
var insertValues = {'username': username, 'firstname': firstname, 'lastname': lastname, 'email': email,
'password':password, 'profileType': profileType,'userType': userType, 'gcmId': gcmId,
'deviceName': deviceName, 'osType': osType, 'osVersion': osVersion,'isBlocked':isBlocked,
'isActive':isActive, 'ofActive':ofActive};
この値を取得する関数は次のとおりです。
function registerUser(insertValues,callback)
{
model.client.query('insert into users set ?',insertValues,function(err) {
if(!err)
callback({"success":'1'});
else
console.log(err);
callback({"success":'0'});
});
}
module.exports.registerUser=registerUser;
次のようなエラーを返します。
Maria Db Connected at : 128.199.242.240
{ [Error: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'NULL' at line 1] code: 1064 }