Lines Matching refs:execute
3 ## cl.distributeddatamgr.1 RelationalStore execute,executeSync接口执行不合法SQL语句错误码变更
33 | execute接口执行不合法SQL语句 | 错误码为14800000 | 错误码为14800021 |
38 在调用execute,executeSync接口执行SQL语句场景,如使用14800000错误码作为判定条件,需要将对应判定条件错误码修改为14800021。
40 修改前execute接口执行SQL语句报错错误码:
44 await rdbStore.execute("COMMIT");
47 console.log(`execute failed, code: ${err.code}`);
52 修改后execute接口执行SQL语句报错错误码:
56 await rdbStore.execute("COMMIT");
59 console.log(`execute failed, code: ${err.code}`);
71 console.log(`execute failed, code: ${err.code}`);
83 console.log(`execute failed, code: ${err.code}`);