我使用的是Android模拟器,所以我把users.db放在'android/app/src/main/assets/users.db'中。我已经运行了npx react-native link
来建立链接。我使用的是React Native 6.0以上的版本,带有自动链接。
我得到了“Error: Could not open database”:
import React, {Component} from 'react'
import {View, Text, Alert} from 'react-native'
import SQLite from 'react-native-sqlite-storage'
export default class App extends Component {
constructor(props) {
super(props)
SQLite.openDatabase({name:'users', createFromLocation:1}, this.connected, this.failed)
}
connected= () =>{
Alert.alert('Connected with success !')
}
failed= (e) =>{
Alert.alert('Something went wrong !', `${e}`)
}
render(){
return(
<View>
<Text>Testing SQLite</Text>
</View>
)
}
}
5条答案
按热度按时间u1ehiz5o1#
当将属性
createFromLocation
更改为2时,系统会创建自己的数据库,该数据库为空,因此您需要创建表。不幸的是,我没有使用我的旧数据库。bbmckpt72#
您需要将数据库放入
assets/www
文件夹才能使其工作。tag5nh1u3#
在我从设备上完全卸载应用程序并使用
npx react-native run-android
从头开始重新安装之后,预填充的数据库是只读的。仅仅在应用程序已经在设备上时重新加载它是不够的。
2uluyalo4#
我从react-native.config.js中删除了它,它工作了
参考:Github
bxfogqkk5#
数据库的完整文件路径应为“\android\app\src\main\assets\www”。