gpt4 book ai didi

react-native - 如何从 Expo SQLite API 获取 sql 错误的原因?

转载 作者:行者123 更新时间:2023-12-04 08:47:12 54 4
gpt4 key购买 nike

具有以下代码:

import { SQLite } from 'expo';

const db = SQLite.openDatabase('mydb.db')
db.transaction( tx => {
tx.executeSql('insert into invalidTable values (?,?)', [1,2], null, (transact, err) => {
//I can't find error description in the objects below
console.log({transact, err})
})
})

如何获取 sqlite 错误消息,以确定此错误的确切原因(在本例中为无效表)?

API documentation说我的错误函数“采用两个参数:事务本身和错误对象”,但我在这些中都找不到错误描述。

我做了一个 snack模拟这个场景。

最佳答案

这为我记录了错误

  import { SQLite } from 'expo';

const db = SQLite.openDatabase('mydb.db')

db.transaction(tx => {
tx.executeSql(sql, params, (_, { rows }) => {
console.log(rows._array)
}, (t, error) => {
console.log(error);
})
})

关于react-native - 如何从 Expo SQLite API 获取 sql 错误的原因?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49178190/

54 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com