├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── Podfile ├── README.md ├── instructions ├── addFilesToProject.png ├── addFilesToProjectSelect.png ├── addlibs.png ├── after-rnpm.png ├── before-rnpm.png ├── libs.png ├── libssummary.png ├── projectStructureAfter.png └── require.png ├── lib └── sqlite.core.js ├── package.json ├── platforms ├── android-native │ ├── build.gradle │ ├── gradle.properties │ ├── libs │ │ ├── arm64-v8a │ │ │ └── libsqlc-native-driver.so │ │ ├── armeabi-v7a │ │ │ └── libsqlc-native-driver.so │ │ ├── sqlite-connector.jar │ │ ├── x86 │ │ │ └── libsqlc-native-driver.so │ │ └── x86_64 │ │ │ └── libsqlc-native-driver.so │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── io │ │ └── liteglue │ │ ├── CallbackContext.java │ │ ├── SQLiteAndroidDatabase.java │ │ ├── SQLitePlugin.java │ │ ├── SQLitePluginConverter.java │ │ └── SQLitePluginPackage.java ├── android │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── org │ │ └── pgsqlite │ │ ├── CallbackContext.java │ │ ├── SQLitePlugin.java │ │ ├── SQLitePluginConverter.java │ │ └── SQLitePluginPackage.java ├── ios │ ├── SQLite.h │ ├── SQLite.m │ ├── SQLite.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── SQLiteResult.h │ └── SQLiteResult.m └── windows │ ├── .gitignore │ ├── SQLitePlugin.sln │ └── SQLitePlugin │ ├── PropertySheet.props │ ├── ReactPackageProvider.cpp │ ├── ReactPackageProvider.h │ ├── ReactPackageProvider.idl │ ├── SQLitePlugin.cpp │ ├── SQLitePlugin.def │ ├── SQLitePlugin.h │ ├── SQLitePlugin.vcxproj │ ├── SQLitePlugin.vcxproj.filters │ ├── packages.config │ ├── pch.cpp │ └── pch.h ├── react-native-sqlite-storage.podspec ├── react-native.config.js ├── sqlite.js └── test ├── index.android.json1.js ├── index.ios.callback.js ├── index.ios.promise.js └── index.windows.callback.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/README.md -------------------------------------------------------------------------------- /instructions/addFilesToProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/addFilesToProject.png -------------------------------------------------------------------------------- /instructions/addFilesToProjectSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/addFilesToProjectSelect.png -------------------------------------------------------------------------------- /instructions/addlibs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/addlibs.png -------------------------------------------------------------------------------- /instructions/after-rnpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/after-rnpm.png -------------------------------------------------------------------------------- /instructions/before-rnpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/before-rnpm.png -------------------------------------------------------------------------------- /instructions/libs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/libs.png -------------------------------------------------------------------------------- /instructions/libssummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/libssummary.png -------------------------------------------------------------------------------- /instructions/projectStructureAfter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/projectStructureAfter.png -------------------------------------------------------------------------------- /instructions/require.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/instructions/require.png -------------------------------------------------------------------------------- /lib/sqlite.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/lib/sqlite.core.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/package.json -------------------------------------------------------------------------------- /platforms/android-native/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/build.gradle -------------------------------------------------------------------------------- /platforms/android-native/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/gradle.properties -------------------------------------------------------------------------------- /platforms/android-native/libs/arm64-v8a/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/libs/arm64-v8a/libsqlc-native-driver.so -------------------------------------------------------------------------------- /platforms/android-native/libs/armeabi-v7a/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/libs/armeabi-v7a/libsqlc-native-driver.so -------------------------------------------------------------------------------- /platforms/android-native/libs/sqlite-connector.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/libs/sqlite-connector.jar -------------------------------------------------------------------------------- /platforms/android-native/libs/x86/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/libs/x86/libsqlc-native-driver.so -------------------------------------------------------------------------------- /platforms/android-native/libs/x86_64/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/libs/x86_64/libsqlc-native-driver.so -------------------------------------------------------------------------------- /platforms/android-native/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SQLitePlugin' 2 | include ':app' -------------------------------------------------------------------------------- /platforms/android-native/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/android-native/src/main/java/io/liteglue/CallbackContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/src/main/java/io/liteglue/CallbackContext.java -------------------------------------------------------------------------------- /platforms/android-native/src/main/java/io/liteglue/SQLiteAndroidDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/src/main/java/io/liteglue/SQLiteAndroidDatabase.java -------------------------------------------------------------------------------- /platforms/android-native/src/main/java/io/liteglue/SQLitePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/src/main/java/io/liteglue/SQLitePlugin.java -------------------------------------------------------------------------------- /platforms/android-native/src/main/java/io/liteglue/SQLitePluginConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/src/main/java/io/liteglue/SQLitePluginConverter.java -------------------------------------------------------------------------------- /platforms/android-native/src/main/java/io/liteglue/SQLitePluginPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android-native/src/main/java/io/liteglue/SQLitePluginPackage.java -------------------------------------------------------------------------------- /platforms/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android/build.gradle -------------------------------------------------------------------------------- /platforms/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'SQLitePlugin' 2 | include ':app' -------------------------------------------------------------------------------- /platforms/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platforms/android/src/main/java/org/pgsqlite/CallbackContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android/src/main/java/org/pgsqlite/CallbackContext.java -------------------------------------------------------------------------------- /platforms/android/src/main/java/org/pgsqlite/SQLitePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android/src/main/java/org/pgsqlite/SQLitePlugin.java -------------------------------------------------------------------------------- /platforms/android/src/main/java/org/pgsqlite/SQLitePluginConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android/src/main/java/org/pgsqlite/SQLitePluginConverter.java -------------------------------------------------------------------------------- /platforms/android/src/main/java/org/pgsqlite/SQLitePluginPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/android/src/main/java/org/pgsqlite/SQLitePluginPackage.java -------------------------------------------------------------------------------- /platforms/ios/SQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/ios/SQLite.h -------------------------------------------------------------------------------- /platforms/ios/SQLite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/ios/SQLite.m -------------------------------------------------------------------------------- /platforms/ios/SQLite.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/ios/SQLite.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platforms/ios/SQLite.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/ios/SQLite.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platforms/ios/SQLiteResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/ios/SQLiteResult.h -------------------------------------------------------------------------------- /platforms/ios/SQLiteResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/ios/SQLiteResult.m -------------------------------------------------------------------------------- /platforms/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/.gitignore -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin.sln -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/PropertySheet.props -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/ReactPackageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/ReactPackageProvider.cpp -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/ReactPackageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/ReactPackageProvider.h -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/ReactPackageProvider.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/ReactPackageProvider.idl -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/SQLitePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/SQLitePlugin.cpp -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/SQLitePlugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/SQLitePlugin.def -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/SQLitePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/SQLitePlugin.h -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/SQLitePlugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/SQLitePlugin.vcxproj -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/SQLitePlugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/SQLitePlugin.vcxproj.filters -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/packages.config -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /platforms/windows/SQLitePlugin/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/platforms/windows/SQLitePlugin/pch.h -------------------------------------------------------------------------------- /react-native-sqlite-storage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/react-native-sqlite-storage.podspec -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/react-native.config.js -------------------------------------------------------------------------------- /sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/sqlite.js -------------------------------------------------------------------------------- /test/index.android.json1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/test/index.android.json1.js -------------------------------------------------------------------------------- /test/index.ios.callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/test/index.ios.callback.js -------------------------------------------------------------------------------- /test/index.ios.promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/test/index.ios.promise.js -------------------------------------------------------------------------------- /test/index.windows.callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andpor/react-native-sqlite-storage/HEAD/test/index.windows.callback.js --------------------------------------------------------------------------------