選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

database-connect.js 258B

123456
  1. import {openDatabase} from 'react-native-sqlite-storage';
  2. // TODO reprends ici https://blog.logrocket.com/using-sqlite-with-react-native/
  3. export const getDBConnection = async () => {
  4. return openDatabase({name: 'todo-data.db', location: 'default'});
  5. };