zoukankan      html  css  js  c++  java
  • html5 sql

    function db_insert(document_list) {
    var insertSql = null;
    for(var i = 0; i < document_list.length; i++) {
    console.log(document_list[i].documentId + ',' + document_list[i].name + ',' + document_list[i].brief);
    }
    for(var i = 0; i < document_list.length; i++) {
    if(i == 0) {
    insertSql = ' select "' +document_list[i].documentId+ '","' +document_list[i].name+ '","' +(document_list[i].brief == null ? " " : document_list[i].brief)+ '" ';
    } else {
    insertSql += ' union all select "' + document_list[i].documentId + '","' + document_list[i].name + '","' +(document_list[i].brief == null ? " " : document_list[i].brief)+ '" ';
    }
    }
    console.log("sql " + insertSql);
    db.transaction(function(tx) {
    tx.executeSql('insert into document(documentId,name,brief) ' + insertSql, [], onSuccess, onError);
    });
    }

    语句拼写的时候中间有undefined变量会导致整体undefined

  • 相关阅读:
    UPC 5130 Concerts
    poj 1079 Calendar Game
    2018 ACM-ICPC 中国大学生程序设计竞赛线上赛
    CF932E
    浅谈Tarjan算法
    拉格朗日差值
    扩展欧几里得算法(exgcd)
    欧拉定理
    莫比乌斯反演
    除法分块
  • 原文地址:https://www.cnblogs.com/lhang55/p/8110750.html
Copyright © 2011-2022 走看看