Hello Friends,

Welcome To Infinitbility!

React native SQLite & React native SQLite storage provide an option (SQLite.deleteDatabase) to delete db file from user phone but if you call SQLite.openDatabase for deleted db then db file re-creates on user phone.

if you want to completely remove the database then you have to delete the database from your project before the build.

SQLite.deleteDatabase use for deleting previous used database from users mobile.

before deleting the database check the user phone database file available or not.

*** Here I’m using a physical device for testing ***

SQLite database file location in android

here, I’m using rn-fetch-blob for check database file.


import RNFetchBlob from 'rn-fetch-blob';

const dirs = RNFetchBlob.fs.dirs;

// for internal storage
console.log(dirs.MainBundleDir + '/databases');

// for external storage
console.log(dirs.SDCardApplicationDir + '/databases');

// show database list
RNFetchBlob.fs.ls(dirs.MainBundleDir + '/databases').then((files) => {
    console.log(files)
});

for show database files


RNFetchBlob.fs.ls(dirs.MainBundleDir + '/databases').then((files) => {
    console.log(files)
});

if you got your SQLite database file name then go to the second step to delete the database

Delete SQLite database file

For deleting the database use the below gist


SQLite.deleteDatabase(
    {name: 'test.db', location: '~www/test.db'},  
    () => { console.log('second db deleted');  },
    error => {
        console.log("ERROR: " + error); 
    }
);

re-check database file available or not database folder.

Note

*** SQLite.deleteDatabase deleting only DB file from user phone. ***

Thanks for reading…

More From React Native Tutorial

Basics

1. Introduction To React Native

2. React Native Environment Setup using expo

3. React Native Environment Setup for windows

4. React Native Environment setup on Mac OS

5. React Native Environment setup on linux

6. React Native Project Structure

7. React Native State

8. React Native Props

9. React Native Styling

10. React Native Flexbox

11. React Native Text

12. React Native Textinput

13. React Native Commands

14. React Native ScrollView

Advances

1. React Native Dark Mode

2. React Native Fonts

3. React Native SQLite

4. React Native DatepickerAndroid

5. React native ScrollView scroll to position

6. How to align icon with text in react native

7. React Native Image

8. React Native Firebase Crashlytics

9. React Native Async Storage

10. React Native Share

Error & Issue Solution

1. Task :app:transformDexArchiveWithDexMergerForDebug FAILED In React Native

2. Expiring Daemon because JVM heap space is exhausted In React Native

3. Task :app:transformNativeLibsWithMergeJniLibsForDebug FAILED In React Native

4. Unable to determine the current character, it is not a string, number, array, or object in react native

5. App crashed immediately after install react native video or track player

6. how to delete SQLite database in android react native

7. React native material dropdown twice click issue

8. How to get the current route in react-navigation?

9. how to disable drawer on the drawer navigation screen?

10. Image not showing in ios 14 react native

11. React Native image picker launchimagelibrary on second time issue

12. how to open any link from react native render Html

13. Network request failed in react native fetch

14. React Native upload video example