数据类型不匹配VB.net和Access数据库

时间:2018-11-04 21:25:05

标签: vb.net winforms access

在“删除”按钮单击事件上,我获得了附加信息:没有为一个或多个必需参数提供值。在我的Access数据库中,CustNo是短文本的数据类型

xhttp.onreadystatechange = function() {
  if(this.readyState == 4 && this.status == 200) {
    var peopleTxt = this.responseText;
    peopleObj = JSON.parse(peopleTxt); //.filter();

    peopleObj.rounds = peopleObj.rounds.filter(a=>a.name=="Matchday 1");
    html = Mustache.to_html(tp, peopleObj);
    document.getElementById("demo").innerHTML = html;      

  }  
};

0 个答案:

没有答案
相关问题