如何处理客户端数据库删除表事务?
我的客户端数据库上有以下功能:
dropTable = function (a, tbl) {
a.executeSql('Drop Table If Exists ' + tbl + ';', [],
function(a, b){
console.log('Table "' + tbl + '" dropped.');
}
, errorHandler);
};
我需要做什么才能仅在删除表时显示控制台消息?目前它显示在每个函数调用上。
I've got the following function on my client-side db:
dropTable = function (a, tbl) {
a.executeSql('Drop Table If Exists ' + tbl + ';', [],
function(a, b){
console.log('Table "' + tbl + '" dropped.');
}
, errorHandler);
};
What do I have to do to show the console message only when a table is dropped? It currently shows on every function call.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来你的查询是“成功的”,无论它是否存在(因为你保护不存在的情况)。如果你想硬失败:
如果 errorHandler 不存在,应该调用它。干杯!
Looks like your query is "successful" whether it exists or not (since you guard for the case of nonexistence). If you want to fail hard:
This should call the errorHandler if it doesn't exist. Cheers!