如何在 expo react native 中使用 sqlite 文件

How to use sqlite file in expo react native

我正在使用 expo 0.62 我有一个项目要将另一个项目带到 android 工作室 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   

如果你的项目使用了expo,你可以使用Expo-SQLite,它很容易安装和使用。