(我使用 Jquery mobile 和 Phonegap)。
我正在尝试将行插入数据库,但如果包含的内容不为空,我想插入。这是我下面的代码
for (var i = 0; i < id_textarea_commenter.length ; i++)
{
var sql ="INSERT INTO Commenter (IdPrestation, IdTypeCommentaire, IdGroupe, Commentaire, rowguid)" +
"VALUES (?,?,?,?,?)";
Commentaire =$('textarea#'+id_textarea_commenter[i]+'').val();
IdTypeCommentaire =id_textarea_commenter[i];
if( (Commentaire!= " ") || (Commentaire!= "") || (Commentaire.length!= 0) )
{
console.log(Commentaire +"--------"+ IdTypeCommentaire );
params = [IdPrestation,IdTypeCommentaire, IdGroupe, Commentaire, rowguid];
tx_commenter.executeSql(sql, params);
console.log("I= "+i);
}
}
我正在尝试将行插入数据库,但如果包含的内容不为空,我想插入。这是我下面的代码
即使插入字段也是空的问题!
我应该如何解决这个问题并提前谢谢你