feat:sqflite
Showing
.gitignore
0 → 100644
.idea/libraries/Flutter_Plugins.xml
0 → 100644
.idea/misc.xml
0 → 100644
CHANGELOG.md
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
This diff is collapsed.
Click to expand it.
analysis_options.yaml
0 → 100644
android/.gitignore
0 → 100644
android/build.gradle
0 → 100644
android/gradle.properties
0 → 100644
android/settings.gradle
0 → 100644
android/src/main/AndroidManifest.xml
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
darwin/.gitignore
0 → 100644
darwin/Assets/.gitkeep
0 → 100644
darwin/Classes/SqfliteCursor.h
0 → 100644
darwin/Classes/SqfliteCursor.m
0 → 100644
darwin/Classes/SqfliteDarwinDB.h
0 → 100644
darwin/Classes/SqfliteDarwinDatabase.h
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/Classes/SqfliteDarwinDatabase.m
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/Classes/SqfliteDarwinDatabaseQueue.h
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/Classes/SqfliteDarwinDatabaseQueue.m
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/Classes/SqfliteDarwinImport.h
0 → 100644
darwin/Classes/SqfliteDarwinResultSet.h
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/Classes/SqfliteDarwinResultSet.m
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/Classes/SqfliteDatabase.h
0 → 100644
darwin/Classes/SqfliteDatabase.m
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/Classes/SqfliteImport.h
0 → 100644
darwin/Classes/SqfliteOperation.h
0 → 100644
darwin/Classes/SqfliteOperation.m
0 → 100644
darwin/Classes/SqflitePlugin.h
0 → 100644
darwin/Classes/SqflitePlugin.m
0 → 100644
This diff is collapsed.
Click to expand it.
darwin/FMDB_LICENSE.txt
0 → 100644
darwin/README.md
0 → 100644
darwin/Resources/PrivacyInfo.xcprivacy
0 → 100644
darwin/sqflite.podspec
0 → 100644
| # | ||
| # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
| # | ||
| Pod::Spec.new do |s| | ||
| s.name = 'sqflite' | ||
| s.version = '0.0.3' | ||
| s.summary = 'SQLite plugin.' | ||
| s.description = <<-DESC | ||
| Access SQLite database. | ||
| DESC | ||
| s.homepage = 'https://github.com/tekartik/sqflite' | ||
| s.license = { :file => '../LICENSE' } | ||
| s.author = { 'Tekartik' => 'alex@tekartik.com' } | ||
| s.source = { :path => '.' } | ||
| s.source_files = 'Classes/**/*' | ||
| s.public_header_files = 'Classes/**/*.h' | ||
| s.ios.dependency 'Flutter' | ||
| s.osx.dependency 'FlutterMacOS' | ||
| s.ios.deployment_target = '12.0' | ||
| s.osx.deployment_target = '10.14' | ||
| s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } | ||
| s.resource_bundles = {'sqflite_darwin_privacy' => ['Resources/PrivacyInfo.xcprivacy']} | ||
| end | ||
doc/conflict_algorithm.md
0 → 100644
doc/deleting_db.md
0 → 100644
doc/desktop_support.md
0 → 100644
doc/dev_tips.md
0 → 100644
doc/encryption_support.md
0 → 100644
doc/external.md
0 → 100644
doc/handling_errors.md
0 → 100644
doc/how_to.md
0 → 100644
doc/migration_example.md
0 → 100644
doc/opening_asset_db.md
0 → 100644
doc/opening_db.md
0 → 100644
doc/perf.md
0 → 100644
doc/qa.md
0 → 100644
doc/sqflite_dev_guide.md
0 → 100644
doc/sql.md
0 → 100644
doc/supported_types.md
0 → 100644
doc/testing.md
0 → 100644
doc/troubleshooting.md
0 → 100644
This diff is collapsed.
Click to expand it.
doc/usage_recommendations.md
0 → 100644
This diff is collapsed.
Click to expand it.
doc/version.md
0 → 100644
This diff is collapsed.
Click to expand it.
doc/web_support.md
0 → 100644
This diff is collapsed.
Click to expand it.
example/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
example/README.md
0 → 100644
This diff is collapsed.
Click to expand it.
example/analysis_options.yaml
0 → 100644
This diff is collapsed.
Click to expand it.
example/android/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
example/android/app/build.gradle
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
example/android/build.gradle
0 → 100644
This diff is collapsed.
Click to expand it.
example/android/gradle.properties
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
example/android/settings.gradle
0 → 100644
This diff is collapsed.
Click to expand it.
example/assets/example.db
0 → 100644
This diff is collapsed.
Click to expand it.
example/assets/issue_64.db
0 → 100644
This diff is collapsed.
Click to expand it.
example/integration_test/sqflite_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/batch_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/database/database.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/database/database_impl.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/database/database_io.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/database/database_web.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/deprecated_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/exception_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/exp_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/main.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/manual_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/model/item.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/model/main_item.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/model/test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/open_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/raw_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/slow_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/src/common_import.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/src/dev_utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/src/expect.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/src/item_widget.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/src/main_item_widget.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/todo_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/type_test_page.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/lib/utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/pubspec.yaml
0 → 100644
This diff is collapsed.
Click to expand it.
example/test/example_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/test/main/test_main.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/test/widget_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/test_driver/integration_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/android_sqflite_logcat.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/android_uninstall.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/build_ios.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/build_macos.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/create_project_ios.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/create_project_ios_objc.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/create_project_macos.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/run_integration_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
example/tool/run_integration_test_macos.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/sqflite.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/sqflite_dev.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/sql.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/sqlite_api.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/batch.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/collection_utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/compat.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/constant.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/database.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/database_mixin.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/dev_utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/env_utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/exception.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/exception_impl.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/factory.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/factory_impl.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/factory_mixin.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/mixin.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/mixin/constant.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/mixin/factory.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/open_options.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/services_impl.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/sqflite_android.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/sqflite_compat.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/sqflite_impl.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/sqflite_import.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/sqflite_plugin.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/sql_builder.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/transaction.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/src/value_utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
lib/utils/utils.dart
0 → 100644
This diff is collapsed.
Click to expand it.
pubspec.yaml
0 → 100644
This diff is collapsed.
Click to expand it.
test/no_flutter_main.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/no_flutter_test_.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/sqflite_dev_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/sqflite_impl_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/sqflite_open_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/sqflite_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/sql_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/sqlite_api_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/src_mixin_factory_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
test/src_mixin_test.dart
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment