从sqlite检索图像时应用崩溃

时间:2020-05-13 08:35:59

标签: sqlite react-native react-native-sqlite-storage

我想从Sqlite数据库中检索图像,但是在选择“图像”列时,应用程序将崩溃而不会出现任何错误,所有小于1 MB的图像, 但是没有选择图像列就可以了... 感谢帮助... 我正在使用react-native-sqlite-storage

enter image description here

 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')))
            })
        }

0 个答案:

没有答案