我正在使用 expo 0.62 我有一个项目来获取另一个项目一个 android studio java 项目并将其转换为反应本机项目他使用数据库作为 database.sqlite 我想知道我是否可以从该文件中获取数据包这样做我发现是 react-native-sqlite-storage 但我得到了这个像导入一样的错误
import {openDatabase} from 'react-native-sqlite-storage';
const db = openDatabase({name:'database.sqlite'});
export const getStories = props => {
console.log(db);
};```
```TypeError: null is not an object (evaluating 'NativeModules["SQLite"][method]')```
does it mean i can't use it in expo and have to eject can anyone tell me to get data from .sqlite format file in expo