我想从Sqlite数据库中检索图像,但是在选择“图像”列时,应用程序将崩溃而不会出现任何错误,所有小于1 MB的图像, 但是没有选择图像列就可以了... 感谢帮助... 我正在使用react-native-sqlite-storage
const callData = ()=>{
db.transaction(tx=>{
tx.executeSql('select ID, Names, Images from Subjects', [], (tx, results) => {
console.log("Query completed")
let data = results.rows.raw()
// console.log(data)
dispatch({type:CALLD_ATA,data})
},(err=>console.log(err,'from calling data')))
})
}