├── Podfile ├── Podfile.lock ├── Pods ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── Headers │ ├── Private │ │ ├── FMDB │ │ │ ├── FMDB.h │ │ │ ├── FMDatabase.h │ │ │ ├── FMDatabaseAdditions.h │ │ │ ├── FMDatabasePool.h │ │ │ ├── FMDatabaseQueue.h │ │ │ └── FMResultSet.h │ │ ├── Realm │ │ │ ├── NSError+RLMSync.h │ │ │ ├── RLMAccessor.h │ │ │ ├── RLMArray.h │ │ │ ├── RLMArray_Private.h │ │ │ ├── RLMCollection.h │ │ │ ├── RLMCollection_Private.h │ │ │ ├── RLMConstants.h │ │ │ ├── RLMListBase.h │ │ │ ├── RLMMigration.h │ │ │ ├── RLMMigration_Private.h │ │ │ ├── RLMObject.h │ │ │ ├── RLMObjectBase.h │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ ├── RLMObjectBase_Private.h │ │ │ ├── RLMObjectSchema.h │ │ │ ├── RLMObjectSchema_Private.h │ │ │ ├── RLMObjectStore.h │ │ │ ├── RLMObject_Private.h │ │ │ ├── RLMOptionalBase.h │ │ │ ├── RLMPlatform.h │ │ │ ├── RLMProperty.h │ │ │ ├── RLMProperty_Private.h │ │ │ ├── RLMRealm+Sync.h │ │ │ ├── RLMRealm.h │ │ │ ├── RLMRealmConfiguration+Sync.h │ │ │ ├── RLMRealmConfiguration.h │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ ├── RLMRealm_Dynamic.h │ │ │ ├── RLMRealm_Private.h │ │ │ ├── RLMResults.h │ │ │ ├── RLMResults_Private.h │ │ │ ├── RLMSchema.h │ │ │ ├── RLMSchema_Private.h │ │ │ ├── RLMSyncConfiguration.h │ │ │ ├── RLMSyncConfiguration_Private.h │ │ │ ├── RLMSyncCredentials.h │ │ │ ├── RLMSyncManager.h │ │ │ ├── RLMSyncManager_Private.h │ │ │ ├── RLMSyncPermission.h │ │ │ ├── RLMSyncSession.h │ │ │ ├── RLMSyncSubscription.h │ │ │ ├── RLMSyncUser.h │ │ │ ├── RLMSyncUtil.h │ │ │ ├── RLMSyncUtil_Private.h │ │ │ ├── RLMThreadSafeReference.h │ │ │ └── Realm.h │ │ └── WCDB │ │ │ ├── SQLiteRepairKit.h │ │ │ ├── WCDB.h │ │ │ ├── WCTAnyProperty.h │ │ │ ├── WCTBaseAccessor.h │ │ │ ├── WCTBinding.h │ │ │ ├── WCTChainCall+Private.h │ │ │ ├── WCTChainCall+Statistics.h │ │ │ ├── WCTChainCall.h │ │ │ ├── WCTCoding.h │ │ │ ├── WCTCodingMacro.h │ │ │ ├── WCTColumnBinding.h │ │ │ ├── WCTCompatible.h │ │ │ ├── WCTConstraintBinding.h │ │ │ ├── WCTConstraintMacro.h │ │ │ ├── WCTCore+Private.h │ │ │ ├── WCTCore.h │ │ │ ├── WCTCppAccessor.h │ │ │ ├── WCTDatabase+Compatible.h │ │ │ ├── WCTDatabase+Core.h │ │ │ ├── WCTDatabase+Database.h │ │ │ ├── WCTDatabase+FTS.h │ │ │ ├── WCTDatabase+File.h │ │ │ ├── WCTDatabase+Private.h │ │ │ ├── WCTDatabase+RepairKit.h │ │ │ ├── WCTDatabase+Statistics.h │ │ │ ├── WCTDatabase+Table.h │ │ │ ├── WCTDatabase+Transaction.h │ │ │ ├── WCTDatabase.h │ │ │ ├── WCTDeclare.h │ │ │ ├── WCTDelete+Private.h │ │ │ ├── WCTDelete.h │ │ │ ├── WCTError+Private.h │ │ │ ├── WCTError.h │ │ │ ├── WCTExpr.h │ │ │ ├── WCTIndexBinding.h │ │ │ ├── WCTIndexMacro.h │ │ │ ├── WCTInsert+Private.h │ │ │ ├── WCTInsert.h │ │ │ ├── WCTInterface+ChainCall.h │ │ │ ├── WCTInterface+Convenient.h │ │ │ ├── WCTInterface+Core.h │ │ │ ├── WCTInterface+Table.h │ │ │ ├── WCTInterface.h │ │ │ ├── WCTMacroHelper.h │ │ │ ├── WCTMaster+WCTTableCoding.h │ │ │ ├── WCTMaster.h │ │ │ ├── WCTMultiSelect+Private.h │ │ │ ├── WCTMultiSelect.h │ │ │ ├── WCTORM.h │ │ │ ├── WCTObjCAccessor.h │ │ │ ├── WCTProperty.h │ │ │ ├── WCTPropertyBase.h │ │ │ ├── WCTPropertyMacro.h │ │ │ ├── WCTResult.h │ │ │ ├── WCTRowSelect+Private.h │ │ │ ├── WCTRowSelect.h │ │ │ ├── WCTRuntimeBaseAccessor.h │ │ │ ├── WCTRuntimeCppAccessor.h │ │ │ ├── WCTRuntimeObjCAccessor.h │ │ │ ├── WCTSelect+Private.h │ │ │ ├── WCTSelect.h │ │ │ ├── WCTSelectBase+NoARC.h │ │ │ ├── WCTSelectBase+Private.h │ │ │ ├── WCTSelectBase+WCTExpr.h │ │ │ ├── WCTSelectBase.h │ │ │ ├── WCTSequence+WCTTableCoding.h │ │ │ ├── WCTSequence.h │ │ │ ├── WCTStatement+Compatible.h │ │ │ ├── WCTStatement+Private.h │ │ │ ├── WCTStatement.h │ │ │ ├── WCTStatistics+Compatible.h │ │ │ ├── WCTStatistics.h │ │ │ ├── WCTTable+ChainCall.h │ │ │ ├── WCTTable+Convenient.h │ │ │ ├── WCTTable+Database.h │ │ │ ├── WCTTable+Private.h │ │ │ ├── WCTTable.h │ │ │ ├── WCTTokenizer+Apple.h │ │ │ ├── WCTTokenizer+WCDB.h │ │ │ ├── WCTTransaction+Compatible.h │ │ │ ├── WCTTransaction+Private.h │ │ │ ├── WCTTransaction+Statistics.h │ │ │ ├── WCTTransaction+Table.h │ │ │ ├── WCTTransaction.h │ │ │ ├── WCTUpdate+Private.h │ │ │ ├── WCTUpdate.h │ │ │ ├── WCTValue.h │ │ │ ├── abstract.h │ │ │ ├── btree.h │ │ │ ├── btreeInt.h │ │ │ ├── clause_join.hpp │ │ │ ├── column.hpp │ │ │ ├── column_def.hpp │ │ │ ├── column_index.hpp │ │ │ ├── column_result.hpp │ │ │ ├── column_type.hpp │ │ │ ├── concurrent_list.hpp │ │ │ ├── config.hpp │ │ │ ├── conflict.hpp │ │ │ ├── constraint_table.hpp │ │ │ ├── core_base.hpp │ │ │ ├── crypto.h │ │ │ ├── database.hpp │ │ │ ├── declare.hpp │ │ │ ├── describable.hpp │ │ │ ├── error.hpp │ │ │ ├── expr.hpp │ │ │ ├── file.hpp │ │ │ ├── foreign_key.hpp │ │ │ ├── fts3.h │ │ │ ├── fts3Int.h │ │ │ ├── fts3_hash.h │ │ │ ├── fts3_tokenizer.h │ │ │ ├── fts5.h │ │ │ ├── fts_module.hpp │ │ │ ├── fts_modules.hpp │ │ │ ├── handle.hpp │ │ │ ├── handle_pool.hpp │ │ │ ├── handle_recyclable.hpp │ │ │ ├── handle_statement.hpp │ │ │ ├── hash.h │ │ │ ├── hwtime.h │ │ │ ├── keywordhash.h │ │ │ ├── literal_value.hpp │ │ │ ├── macro.hpp │ │ │ ├── module_argument.hpp │ │ │ ├── msvc.h │ │ │ ├── mutex.h │ │ │ ├── mutex_wcdb.h │ │ │ ├── opcodes.h │ │ │ ├── order.hpp │ │ │ ├── order_term.hpp │ │ │ ├── os.h │ │ │ ├── os_common.h │ │ │ ├── os_setup.h │ │ │ ├── os_wcdb.h │ │ │ ├── pager.h │ │ │ ├── parse.h │ │ │ ├── path.hpp │ │ │ ├── pcache.h │ │ │ ├── pragma.h │ │ │ ├── pragma.hpp │ │ │ ├── queue.h │ │ │ ├── recyclable.hpp │ │ │ ├── rtree.h │ │ │ ├── rwlock.hpp │ │ │ ├── spin.hpp │ │ │ ├── sqlcipher.h │ │ │ ├── sqlite3.h │ │ │ ├── sqlite3ext.h │ │ │ ├── sqlite3rbu.h │ │ │ ├── sqlite3rtree.h │ │ │ ├── sqlite3userauth.h │ │ │ ├── sqliteInt.h │ │ │ ├── sqliteLimit.h │ │ │ ├── sqliteicu.h │ │ │ ├── sqliterk.h │ │ │ ├── sqliterk_btree.h │ │ │ ├── sqliterk_column.h │ │ │ ├── sqliterk_crypto.h │ │ │ ├── sqliterk_os.h │ │ │ ├── sqliterk_pager.h │ │ │ ├── sqliterk_util.h │ │ │ ├── sqliterk_values.h │ │ │ ├── statement.hpp │ │ │ ├── statement_alter_table.hpp │ │ │ ├── statement_attach.hpp │ │ │ ├── statement_create_index.hpp │ │ │ ├── statement_create_table.hpp │ │ │ ├── statement_create_virtual_table.hpp │ │ │ ├── statement_delete.hpp │ │ │ ├── statement_detach.hpp │ │ │ ├── statement_drop_index.hpp │ │ │ ├── statement_drop_table.hpp │ │ │ ├── statement_explain.hpp │ │ │ ├── statement_insert.hpp │ │ │ ├── statement_pragma.hpp │ │ │ ├── statement_recyclable.hpp │ │ │ ├── statement_reindex.hpp │ │ │ ├── statement_release.hpp │ │ │ ├── statement_rollback.hpp │ │ │ ├── statement_savepoint.hpp │ │ │ ├── statement_select.hpp │ │ │ ├── statement_transaction.hpp │ │ │ ├── statement_update.hpp │ │ │ ├── statement_vacuum.hpp │ │ │ ├── subquery.hpp │ │ │ ├── thread_local.hpp │ │ │ ├── ticker.hpp │ │ │ ├── timed_queue.hpp │ │ │ ├── tokenizer.hpp │ │ │ ├── transaction.hpp │ │ │ ├── utility.hpp │ │ │ ├── vdbe.h │ │ │ ├── vdbeInt.h │ │ │ ├── vxworks.h │ │ │ ├── wal.h │ │ │ └── whereInt.h │ └── Public │ │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabasePool.h │ │ ├── FMDatabaseQueue.h │ │ └── FMResultSet.h │ │ ├── Realm │ │ ├── NSError+RLMSync.h │ │ ├── RLMArray.h │ │ ├── RLMCollection.h │ │ ├── RLMConstants.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMProperty.h │ │ ├── RLMRealm+Sync.h │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration+Sync.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMResults.h │ │ ├── RLMSchema.h │ │ ├── RLMSyncConfiguration.h │ │ ├── RLMSyncCredentials.h │ │ ├── RLMSyncManager.h │ │ ├── RLMSyncPermission.h │ │ ├── RLMSyncSession.h │ │ ├── RLMSyncSubscription.h │ │ ├── RLMSyncUser.h │ │ ├── RLMSyncUtil.h │ │ ├── RLMThreadSafeReference.h │ │ └── Realm.h │ │ └── WCDB │ │ ├── WCDB.h │ │ ├── WCTAnyProperty.h │ │ ├── WCTBaseAccessor.h │ │ ├── WCTBinding.h │ │ ├── WCTChainCall+Private.h │ │ ├── WCTChainCall+Statistics.h │ │ ├── WCTChainCall.h │ │ ├── WCTCoding.h │ │ ├── WCTCodingMacro.h │ │ ├── WCTColumnBinding.h │ │ ├── WCTCompatible.h │ │ ├── WCTConstraintBinding.h │ │ ├── WCTConstraintMacro.h │ │ ├── WCTCore+Private.h │ │ ├── WCTCore.h │ │ ├── WCTCppAccessor.h │ │ ├── WCTDatabase+Compatible.h │ │ ├── WCTDatabase+Core.h │ │ ├── WCTDatabase+Database.h │ │ ├── WCTDatabase+FTS.h │ │ ├── WCTDatabase+File.h │ │ ├── WCTDatabase+Private.h │ │ ├── WCTDatabase+RepairKit.h │ │ ├── WCTDatabase+Statistics.h │ │ ├── WCTDatabase+Table.h │ │ ├── WCTDatabase+Transaction.h │ │ ├── WCTDatabase.h │ │ ├── WCTDeclare.h │ │ ├── WCTDelete+Private.h │ │ ├── WCTDelete.h │ │ ├── WCTError+Private.h │ │ ├── WCTError.h │ │ ├── WCTExpr.h │ │ ├── WCTIndexBinding.h │ │ ├── WCTIndexMacro.h │ │ ├── WCTInsert+Private.h │ │ ├── WCTInsert.h │ │ ├── WCTInterface+ChainCall.h │ │ ├── WCTInterface+Convenient.h │ │ ├── WCTInterface+Core.h │ │ ├── WCTInterface+Table.h │ │ ├── WCTInterface.h │ │ ├── WCTMacroHelper.h │ │ ├── WCTMaster+WCTTableCoding.h │ │ ├── WCTMaster.h │ │ ├── WCTMultiSelect+Private.h │ │ ├── WCTMultiSelect.h │ │ ├── WCTORM.h │ │ ├── WCTObjCAccessor.h │ │ ├── WCTProperty.h │ │ ├── WCTPropertyBase.h │ │ ├── WCTPropertyMacro.h │ │ ├── WCTResult.h │ │ ├── WCTRowSelect+Private.h │ │ ├── WCTRowSelect.h │ │ ├── WCTRuntimeBaseAccessor.h │ │ ├── WCTRuntimeCppAccessor.h │ │ ├── WCTRuntimeObjCAccessor.h │ │ ├── WCTSelect+Private.h │ │ ├── WCTSelect.h │ │ ├── WCTSelectBase+NoARC.h │ │ ├── WCTSelectBase+Private.h │ │ ├── WCTSelectBase+WCTExpr.h │ │ ├── WCTSelectBase.h │ │ ├── WCTSequence+WCTTableCoding.h │ │ ├── WCTSequence.h │ │ ├── WCTStatement+Compatible.h │ │ ├── WCTStatement+Private.h │ │ ├── WCTStatement.h │ │ ├── WCTStatistics+Compatible.h │ │ ├── WCTStatistics.h │ │ ├── WCTTable+ChainCall.h │ │ ├── WCTTable+Convenient.h │ │ ├── WCTTable+Database.h │ │ ├── WCTTable+Private.h │ │ ├── WCTTable.h │ │ ├── WCTTokenizer+Apple.h │ │ ├── WCTTokenizer+WCDB.h │ │ ├── WCTTransaction+Compatible.h │ │ ├── WCTTransaction+Private.h │ │ ├── WCTTransaction+Statistics.h │ │ ├── WCTTransaction+Table.h │ │ ├── WCTTransaction.h │ │ ├── WCTUpdate+Private.h │ │ ├── WCTUpdate.h │ │ ├── WCTValue.h │ │ ├── abstract.h │ │ ├── clause_join.hpp │ │ ├── column.hpp │ │ ├── column_def.hpp │ │ ├── column_index.hpp │ │ ├── column_result.hpp │ │ ├── column_type.hpp │ │ ├── concurrent_list.hpp │ │ ├── config.hpp │ │ ├── conflict.hpp │ │ ├── constraint_table.hpp │ │ ├── core_base.hpp │ │ ├── database.hpp │ │ ├── declare.hpp │ │ ├── describable.hpp │ │ ├── error.hpp │ │ ├── expr.hpp │ │ ├── file.hpp │ │ ├── foreign_key.hpp │ │ ├── fts3_tokenizer.h │ │ ├── fts_module.hpp │ │ ├── fts_modules.hpp │ │ ├── handle.hpp │ │ ├── handle_pool.hpp │ │ ├── handle_recyclable.hpp │ │ ├── handle_statement.hpp │ │ ├── literal_value.hpp │ │ ├── macro.hpp │ │ ├── module_argument.hpp │ │ ├── order.hpp │ │ ├── order_term.hpp │ │ ├── path.hpp │ │ ├── pragma.hpp │ │ ├── recyclable.hpp │ │ ├── rwlock.hpp │ │ ├── spin.hpp │ │ ├── sqlite3.h │ │ ├── statement.hpp │ │ ├── statement_alter_table.hpp │ │ ├── statement_attach.hpp │ │ ├── statement_create_index.hpp │ │ ├── statement_create_table.hpp │ │ ├── statement_create_virtual_table.hpp │ │ ├── statement_delete.hpp │ │ ├── statement_detach.hpp │ │ ├── statement_drop_index.hpp │ │ ├── statement_drop_table.hpp │ │ ├── statement_explain.hpp │ │ ├── statement_insert.hpp │ │ ├── statement_pragma.hpp │ │ ├── statement_recyclable.hpp │ │ ├── statement_reindex.hpp │ │ ├── statement_release.hpp │ │ ├── statement_rollback.hpp │ │ ├── statement_savepoint.hpp │ │ ├── statement_select.hpp │ │ ├── statement_transaction.hpp │ │ ├── statement_update.hpp │ │ ├── statement_vacuum.hpp │ │ ├── subquery.hpp │ │ ├── thread_local.hpp │ │ ├── ticker.hpp │ │ ├── timed_queue.hpp │ │ ├── tokenizer.hpp │ │ ├── transaction.hpp │ │ └── utility.hpp ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── iosdev.xcuserdatad │ │ └── xcschemes │ │ ├── FMDB.xcscheme │ │ ├── Pods-数据库操作.xcscheme │ │ ├── Realm.xcscheme │ │ ├── WCDB.xcscheme │ │ └── xcschememanagement.plist ├── Realm │ ├── LICENSE │ ├── README.md │ ├── Realm │ │ ├── NSError+RLMSync.m │ │ ├── ObjectStore │ │ │ └── src │ │ │ │ ├── binding_callback_thread_observer.cpp │ │ │ │ ├── collection_notifications.cpp │ │ │ │ ├── impl │ │ │ │ ├── apple │ │ │ │ │ ├── external_commit_helper.cpp │ │ │ │ │ └── keychain_helper.cpp │ │ │ │ ├── collection_change_builder.cpp │ │ │ │ ├── collection_notifier.cpp │ │ │ │ ├── list_notifier.cpp │ │ │ │ ├── object_notifier.cpp │ │ │ │ ├── primitive_list_notifier.cpp │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ ├── results_notifier.cpp │ │ │ │ ├── transact_log_handler.cpp │ │ │ │ └── weak_realm_notifier.cpp │ │ │ │ ├── index_set.cpp │ │ │ │ ├── list.cpp │ │ │ │ ├── object.cpp │ │ │ │ ├── object_schema.cpp │ │ │ │ ├── object_store.cpp │ │ │ │ ├── placeholder.cpp │ │ │ │ ├── results.cpp │ │ │ │ ├── schema.cpp │ │ │ │ ├── shared_realm.cpp │ │ │ │ ├── sync │ │ │ │ ├── impl │ │ │ │ │ ├── apple │ │ │ │ │ │ ├── network_reachability_observer.cpp │ │ │ │ │ │ └── system_configuration.cpp │ │ │ │ │ ├── sync_file.cpp │ │ │ │ │ ├── sync_metadata.cpp │ │ │ │ │ └── work_queue.cpp │ │ │ │ ├── partial_sync.cpp │ │ │ │ ├── sync_config.cpp │ │ │ │ ├── sync_manager.cpp │ │ │ │ ├── sync_permission.cpp │ │ │ │ ├── sync_session.cpp │ │ │ │ └── sync_user.cpp │ │ │ │ ├── thread_safe_reference.cpp │ │ │ │ └── util │ │ │ │ └── uuid.cpp │ │ ├── RLMAccessor.mm │ │ ├── RLMAnalytics.mm │ │ ├── RLMArray.mm │ │ ├── RLMClassInfo.mm │ │ ├── RLMCollection.mm │ │ ├── RLMConstants.m │ │ ├── RLMJSONModels.m │ │ ├── RLMListBase.mm │ │ ├── RLMManagedArray.mm │ │ ├── RLMMigration.mm │ │ ├── RLMNetworkClient.mm │ │ ├── RLMObject.mm │ │ ├── RLMObjectBase.mm │ │ ├── RLMObjectSchema.mm │ │ ├── RLMObjectStore.mm │ │ ├── RLMObservation.mm │ │ ├── RLMOptionalBase.mm │ │ ├── RLMPredicateUtil.mm │ │ ├── RLMProperty.mm │ │ ├── RLMQueryUtil.mm │ │ ├── RLMRealm+Sync.mm │ │ ├── RLMRealm.mm │ │ ├── RLMRealmConfiguration+Sync.mm │ │ ├── RLMRealmConfiguration.mm │ │ ├── RLMRealmUtil.mm │ │ ├── RLMResults.mm │ │ ├── RLMSchema.mm │ │ ├── RLMSwiftSupport.m │ │ ├── RLMSyncConfiguration.mm │ │ ├── RLMSyncCredentials.m │ │ ├── RLMSyncManager.mm │ │ ├── RLMSyncPermission.mm │ │ ├── RLMSyncPermissionResults.mm │ │ ├── RLMSyncSession.mm │ │ ├── RLMSyncSessionRefreshHandle.mm │ │ ├── RLMSyncSubscription.mm │ │ ├── RLMSyncUser.mm │ │ ├── RLMSyncUtil.mm │ │ ├── RLMThreadSafeReference.mm │ │ ├── RLMUpdateChecker.mm │ │ ├── RLMUtil.mm │ │ └── Realm.modulemap │ ├── build.sh │ ├── core │ │ └── librealmcore-ios.a │ └── include │ │ ├── NSError+RLMSync.h │ │ ├── RLMAccessor.h │ │ ├── RLMAccessor.hpp │ │ ├── RLMAnalytics.hpp │ │ ├── RLMArray.h │ │ ├── RLMArray_Private.h │ │ ├── RLMArray_Private.hpp │ │ ├── RLMClassInfo.hpp │ │ ├── RLMCollection.h │ │ ├── RLMCollection_Private.h │ │ ├── RLMCollection_Private.hpp │ │ ├── RLMConstants.h │ │ ├── RLMJSONModels.h │ │ ├── RLMListBase.h │ │ ├── RLMMigration.h │ │ ├── RLMMigration_Private.h │ │ ├── RLMNetworkClient.h │ │ ├── RLMObject.h │ │ ├── RLMObjectBase.h │ │ ├── RLMObjectBase_Dynamic.h │ │ ├── RLMObjectBase_Private.h │ │ ├── RLMObjectSchema.h │ │ ├── RLMObjectSchema_Private.h │ │ ├── RLMObjectSchema_Private.hpp │ │ ├── RLMObjectStore.h │ │ ├── RLMObject_Private.h │ │ ├── RLMObject_Private.hpp │ │ ├── RLMObservation.hpp │ │ ├── RLMOptionalBase.h │ │ ├── RLMPlatform.h │ │ ├── RLMPredicateUtil.hpp │ │ ├── RLMPrefix.h │ │ ├── RLMProperty.h │ │ ├── RLMProperty_Private.h │ │ ├── RLMProperty_Private.hpp │ │ ├── RLMQueryUtil.hpp │ │ ├── RLMRealm+Sync.h │ │ ├── RLMRealm.h │ │ ├── RLMRealmConfiguration+Sync.h │ │ ├── RLMRealmConfiguration.h │ │ ├── RLMRealmConfiguration_Private.h │ │ ├── RLMRealmConfiguration_Private.hpp │ │ ├── RLMRealmUtil.hpp │ │ ├── RLMRealm_Dynamic.h │ │ ├── RLMRealm_Private.h │ │ ├── RLMRealm_Private.hpp │ │ ├── RLMResults.h │ │ ├── RLMResults_Private.h │ │ ├── RLMResults_Private.hpp │ │ ├── RLMSchema.h │ │ ├── RLMSchema_Private.h │ │ ├── RLMSchema_Private.hpp │ │ ├── RLMSwiftBridgingHeader.h │ │ ├── RLMSwiftSupport.h │ │ ├── RLMSyncConfiguration.h │ │ ├── RLMSyncConfiguration_Private.h │ │ ├── RLMSyncConfiguration_Private.hpp │ │ ├── RLMSyncCredentials.h │ │ ├── RLMSyncManager.h │ │ ├── RLMSyncManager_Private.h │ │ ├── RLMSyncPermission.h │ │ ├── RLMSyncPermissionResults.h │ │ ├── RLMSyncPermission_Private.hpp │ │ ├── RLMSyncSession.h │ │ ├── RLMSyncSessionRefreshHandle.h │ │ ├── RLMSyncSessionRefreshHandle.hpp │ │ ├── RLMSyncSession_Private.hpp │ │ ├── RLMSyncSubscription.h │ │ ├── RLMSyncUser.h │ │ ├── RLMSyncUser_Private.hpp │ │ ├── RLMSyncUtil.h │ │ ├── RLMSyncUtil_Private.h │ │ ├── RLMSyncUtil_Private.hpp │ │ ├── RLMThreadSafeReference.h │ │ ├── RLMThreadSafeReference_Private.hpp │ │ ├── RLMUpdateChecker.hpp │ │ ├── RLMUtil.hpp │ │ ├── Realm.h │ │ ├── binding_callback_thread_observer.hpp │ │ ├── binding_context.hpp │ │ ├── collection_notifications.hpp │ │ ├── core │ │ ├── realm.hpp │ │ └── realm │ │ │ ├── alloc.hpp │ │ │ ├── alloc_slab.hpp │ │ │ ├── array.hpp │ │ │ ├── array_basic.hpp │ │ │ ├── array_basic_tpl.hpp │ │ │ ├── array_binary.hpp │ │ │ ├── array_blob.hpp │ │ │ ├── array_blobs_big.hpp │ │ │ ├── array_direct.hpp │ │ │ ├── array_integer.hpp │ │ │ ├── array_string.hpp │ │ │ ├── array_string_long.hpp │ │ │ ├── binary_data.hpp │ │ │ ├── bptree.hpp │ │ │ ├── chunked_binary.hpp │ │ │ ├── column.hpp │ │ │ ├── column_backlink.hpp │ │ │ ├── column_binary.hpp │ │ │ ├── column_fwd.hpp │ │ │ ├── column_link.hpp │ │ │ ├── column_linkbase.hpp │ │ │ ├── column_linklist.hpp │ │ │ ├── column_mixed.hpp │ │ │ ├── column_mixed_tpl.hpp │ │ │ ├── column_string.hpp │ │ │ ├── column_string_enum.hpp │ │ │ ├── column_table.hpp │ │ │ ├── column_timestamp.hpp │ │ │ ├── column_tpl.hpp │ │ │ ├── column_type.hpp │ │ │ ├── column_type_traits.hpp │ │ │ ├── data_type.hpp │ │ │ ├── descriptor.hpp │ │ │ ├── descriptor_fwd.hpp │ │ │ ├── disable_sync_to_disk.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── group.hpp │ │ │ ├── group_shared.hpp │ │ │ ├── group_shared_options.hpp │ │ │ ├── group_writer.hpp │ │ │ ├── handover_defs.hpp │ │ │ ├── history.hpp │ │ │ ├── impl │ │ │ ├── array_writer.hpp │ │ │ ├── clamped_hex_dump.hpp │ │ │ ├── clock.hpp │ │ │ ├── cont_transact_hist.hpp │ │ │ ├── destroy_guard.hpp │ │ │ ├── input_stream.hpp │ │ │ ├── output_stream.hpp │ │ │ ├── sequential_getter.hpp │ │ │ ├── simulated_failure.hpp │ │ │ └── transact_log.hpp │ │ │ ├── index_string.hpp │ │ │ ├── lang_bind_helper.hpp │ │ │ ├── link_view.hpp │ │ │ ├── link_view_fwd.hpp │ │ │ ├── metrics │ │ │ ├── metric_timer.hpp │ │ │ ├── metrics.hpp │ │ │ ├── query_info.hpp │ │ │ └── transaction_info.hpp │ │ │ ├── mixed.hpp │ │ │ ├── null.hpp │ │ │ ├── olddatetime.hpp │ │ │ ├── owned_data.hpp │ │ │ ├── parser │ │ │ ├── collection_operator_expression.hpp │ │ │ ├── expression_container.hpp │ │ │ ├── keypath_mapping.hpp │ │ │ ├── parser.hpp │ │ │ ├── parser_utils.hpp │ │ │ ├── property_expression.hpp │ │ │ ├── query_builder.hpp │ │ │ ├── subquery_expression.hpp │ │ │ └── value_expression.hpp │ │ │ ├── query.hpp │ │ │ ├── query_conditions.hpp │ │ │ ├── query_engine.hpp │ │ │ ├── query_expression.hpp │ │ │ ├── query_operators.hpp │ │ │ ├── realm_nmmintrin.h │ │ │ ├── replication.hpp │ │ │ ├── row.hpp │ │ │ ├── spec.hpp │ │ │ ├── string_data.hpp │ │ │ ├── sync │ │ │ ├── changeset.hpp │ │ │ ├── changeset_cooker.hpp │ │ │ ├── changeset_encoder.hpp │ │ │ ├── changeset_parser.hpp │ │ │ ├── client.hpp │ │ │ ├── crypto.hpp │ │ │ ├── crypto_server.hpp │ │ │ ├── feature_token.hpp │ │ │ ├── history.hpp │ │ │ ├── instruction_applier.hpp │ │ │ ├── instruction_replication.hpp │ │ │ ├── instructions.hpp │ │ │ ├── object.hpp │ │ │ ├── object_id.hpp │ │ │ ├── permissions.hpp │ │ │ ├── protocol.hpp │ │ │ ├── transform.hpp │ │ │ └── version.hpp │ │ │ ├── table.hpp │ │ │ ├── table_ref.hpp │ │ │ ├── table_view.hpp │ │ │ ├── timestamp.hpp │ │ │ ├── unicode.hpp │ │ │ ├── util │ │ │ ├── aes_cryptor.hpp │ │ │ ├── any.hpp │ │ │ ├── assert.hpp │ │ │ ├── base64.hpp │ │ │ ├── basic_system_errors.hpp │ │ │ ├── bind_ptr.hpp │ │ │ ├── buffer.hpp │ │ │ ├── buffer_stream.hpp │ │ │ ├── call_with_tuple.hpp │ │ │ ├── cf_ptr.hpp │ │ │ ├── compression.hpp │ │ │ ├── config.h │ │ │ ├── demangle.hpp │ │ │ ├── encrypted_file_mapping.hpp │ │ │ ├── enum.hpp │ │ │ ├── errno.hpp │ │ │ ├── features.h │ │ │ ├── file.hpp │ │ │ ├── file_mapper.hpp │ │ │ ├── hex_dump.hpp │ │ │ ├── http.hpp │ │ │ ├── inspect.hpp │ │ │ ├── interprocess_condvar.hpp │ │ │ ├── interprocess_mutex.hpp │ │ │ ├── json_parser.hpp │ │ │ ├── load_file.hpp │ │ │ ├── logger.hpp │ │ │ ├── memory_stream.hpp │ │ │ ├── misc_errors.hpp │ │ │ ├── miscellaneous.hpp │ │ │ ├── network.hpp │ │ │ ├── network_ssl.hpp │ │ │ ├── optional.hpp │ │ │ ├── overload.hpp │ │ │ ├── priority_queue.hpp │ │ │ ├── random.hpp │ │ │ ├── resource_limits.hpp │ │ │ ├── safe_int_ops.hpp │ │ │ ├── scope_exit.hpp │ │ │ ├── serializer.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── string_buffer.hpp │ │ │ ├── terminate.hpp │ │ │ ├── thread.hpp │ │ │ ├── time.hpp │ │ │ ├── to_string.hpp │ │ │ ├── type_list.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── uri.hpp │ │ │ ├── utf8.hpp │ │ │ └── websocket.hpp │ │ │ ├── utilities.hpp │ │ │ ├── version.hpp │ │ │ ├── version_id.hpp │ │ │ └── views.hpp │ │ ├── execution_context_id.hpp │ │ ├── feature_checks.hpp │ │ ├── impl │ │ ├── apple │ │ │ ├── external_commit_helper.hpp │ │ │ └── keychain_helper.hpp │ │ ├── collection_change_builder.hpp │ │ ├── collection_notifier.hpp │ │ ├── external_commit_helper.hpp │ │ ├── list_notifier.hpp │ │ ├── notification_wrapper.hpp │ │ ├── object_accessor_impl.hpp │ │ ├── object_notifier.hpp │ │ ├── primitive_list_notifier.hpp │ │ ├── realm_coordinator.hpp │ │ ├── results_notifier.hpp │ │ ├── transact_log_handler.hpp │ │ └── weak_realm_notifier.hpp │ │ ├── index_set.hpp │ │ ├── list.hpp │ │ ├── object.hpp │ │ ├── object_accessor.hpp │ │ ├── object_schema.hpp │ │ ├── object_store.hpp │ │ ├── property.hpp │ │ ├── results.hpp │ │ ├── schema.hpp │ │ ├── shared_realm.hpp │ │ ├── sync │ │ ├── impl │ │ │ ├── apple │ │ │ │ ├── network_reachability_observer.hpp │ │ │ │ └── system_configuration.hpp │ │ │ ├── network_reachability.hpp │ │ │ ├── sync_client.hpp │ │ │ ├── sync_file.hpp │ │ │ ├── sync_metadata.hpp │ │ │ └── work_queue.hpp │ │ ├── partial_sync.hpp │ │ ├── subscription_state.hpp │ │ ├── sync_config.hpp │ │ ├── sync_manager.hpp │ │ ├── sync_permission.hpp │ │ ├── sync_session.hpp │ │ └── sync_user.hpp │ │ ├── thread_safe_reference.hpp │ │ └── util │ │ ├── aligned_union.hpp │ │ ├── apple │ │ └── event_loop_signal.hpp │ │ ├── atomic_shared_ptr.hpp │ │ ├── event_loop_signal.hpp │ │ ├── tagged_bool.hpp │ │ ├── time.hpp │ │ └── uuid.hpp ├── Target Support Files │ ├── FMDB │ │ ├── FMDB-dummy.m │ │ ├── FMDB-prefix.pch │ │ └── FMDB.xcconfig │ ├── Pods-数据库操作 │ │ ├── Pods-数据库操作-acknowledgements.markdown │ │ ├── Pods-数据库操作-acknowledgements.plist │ │ ├── Pods-数据库操作-dummy.m │ │ ├── Pods-数据库操作-frameworks.sh │ │ ├── Pods-数据库操作-resources.sh │ │ ├── Pods-数据库操作.debug.xcconfig │ │ └── Pods-数据库操作.release.xcconfig │ ├── Realm │ │ ├── Realm-dummy.m │ │ ├── Realm-prefix.pch │ │ └── Realm.xcconfig │ └── WCDB │ │ ├── WCDB-dummy.m │ │ ├── WCDB-prefix.pch │ │ └── WCDB.xcconfig └── WCDB │ ├── LICENSE │ ├── README.md │ ├── objc │ └── WCDB │ │ ├── WCDB.h │ │ ├── abstract │ │ ├── abstract.h │ │ ├── clause_join.cpp │ │ ├── clause_join.hpp │ │ ├── column.cpp │ │ ├── column.hpp │ │ ├── column_def.cpp │ │ ├── column_def.hpp │ │ ├── column_index.cpp │ │ ├── column_index.hpp │ │ ├── column_result.cpp │ │ ├── column_result.hpp │ │ ├── column_type.cpp │ │ ├── column_type.hpp │ │ ├── conflict.cpp │ │ ├── conflict.hpp │ │ ├── constraint_table.cpp │ │ ├── constraint_table.hpp │ │ ├── declare.hpp │ │ ├── describable.cpp │ │ ├── describable.hpp │ │ ├── expr.cpp │ │ ├── expr.hpp │ │ ├── foreign_key.cpp │ │ ├── foreign_key.hpp │ │ ├── fts_module.cpp │ │ ├── fts_module.hpp │ │ ├── fts_modules.cpp │ │ ├── fts_modules.hpp │ │ ├── handle.cpp │ │ ├── handle.hpp │ │ ├── handle_statement.cpp │ │ ├── handle_statement.hpp │ │ ├── literal_value.cpp │ │ ├── literal_value.hpp │ │ ├── module_argument.cpp │ │ ├── module_argument.hpp │ │ ├── order.cpp │ │ ├── order.hpp │ │ ├── order_term.cpp │ │ ├── order_term.hpp │ │ ├── pragma.cpp │ │ ├── pragma.hpp │ │ ├── statement.cpp │ │ ├── statement.hpp │ │ ├── statement_alter_table.cpp │ │ ├── statement_alter_table.hpp │ │ ├── statement_attach.cpp │ │ ├── statement_attach.hpp │ │ ├── statement_create_index.cpp │ │ ├── statement_create_index.hpp │ │ ├── statement_create_table.cpp │ │ ├── statement_create_table.hpp │ │ ├── statement_create_virtual_table.cpp │ │ ├── statement_create_virtual_table.hpp │ │ ├── statement_delete.cpp │ │ ├── statement_delete.hpp │ │ ├── statement_detach.cpp │ │ ├── statement_detach.hpp │ │ ├── statement_drop_index.cpp │ │ ├── statement_drop_index.hpp │ │ ├── statement_drop_table.cpp │ │ ├── statement_drop_table.hpp │ │ ├── statement_explain.cpp │ │ ├── statement_explain.hpp │ │ ├── statement_insert.cpp │ │ ├── statement_insert.hpp │ │ ├── statement_pragma.cpp │ │ ├── statement_pragma.hpp │ │ ├── statement_reindex.cpp │ │ ├── statement_reindex.hpp │ │ ├── statement_release.cpp │ │ ├── statement_release.hpp │ │ ├── statement_rollback.cpp │ │ ├── statement_rollback.hpp │ │ ├── statement_savepoint.cpp │ │ ├── statement_savepoint.hpp │ │ ├── statement_select.cpp │ │ ├── statement_select.hpp │ │ ├── statement_transaction.cpp │ │ ├── statement_transaction.hpp │ │ ├── statement_update.cpp │ │ ├── statement_update.hpp │ │ ├── statement_vacuum.cpp │ │ ├── statement_vacuum.hpp │ │ ├── subquery.cpp │ │ └── subquery.hpp │ │ ├── core │ │ ├── config.cpp │ │ ├── config.hpp │ │ ├── core_base.cpp │ │ ├── core_base.hpp │ │ ├── database.cpp │ │ ├── database.hpp │ │ ├── database_config.cpp │ │ ├── database_file.cpp │ │ ├── database_repair_kit.cpp │ │ ├── database_sql.cpp │ │ ├── database_transaction.cpp │ │ ├── handle_pool.cpp │ │ ├── handle_pool.hpp │ │ ├── handle_recyclable.cpp │ │ ├── handle_recyclable.hpp │ │ ├── statement_recyclable.cpp │ │ ├── statement_recyclable.hpp │ │ ├── tokenizer.cpp │ │ ├── tokenizer.hpp │ │ ├── transaction.cpp │ │ └── transaction.hpp │ │ ├── interface │ │ ├── builtin │ │ │ ├── NSData+WCTColumnCoding.mm │ │ │ ├── NSDate+WCTColumnCoding.mm │ │ │ ├── NSNumber+WCTColumnCoding.mm │ │ │ ├── NSObject+WCTColumnCoding.mm │ │ │ ├── NSString+WCTColumnCoding.mm │ │ │ ├── WCTMaster+WCTTableCoding.h │ │ │ ├── WCTMaster.h │ │ │ ├── WCTMaster.mm │ │ │ ├── WCTSequence+WCTTableCoding.h │ │ │ ├── WCTSequence.h │ │ │ └── WCTSequence.mm │ │ ├── chaincall │ │ │ ├── WCTChainCall+Private.h │ │ │ ├── WCTChainCall.h │ │ │ ├── WCTChainCall.mm │ │ │ ├── WCTDelete+Private.h │ │ │ ├── WCTDelete.h │ │ │ ├── WCTDelete.mm │ │ │ ├── WCTInsert+Private.h │ │ │ ├── WCTInsert.h │ │ │ ├── WCTInsert.mm │ │ │ ├── WCTInterface+ChainCall.h │ │ │ ├── WCTInterface+ChainCall.mm │ │ │ ├── WCTMultiSelect+Private.h │ │ │ ├── WCTMultiSelect.h │ │ │ ├── WCTMultiSelect.mm │ │ │ ├── WCTRowSelect+Private.h │ │ │ ├── WCTRowSelect.h │ │ │ ├── WCTRowSelect.mm │ │ │ ├── WCTSelect+Private.h │ │ │ ├── WCTSelect.h │ │ │ ├── WCTSelect.mm │ │ │ ├── WCTSelectBase+NoARC.h │ │ │ ├── WCTSelectBase+NoARC.mm │ │ │ ├── WCTSelectBase+Private.h │ │ │ ├── WCTSelectBase.h │ │ │ ├── WCTSelectBase.mm │ │ │ ├── WCTTable+ChainCall.h │ │ │ ├── WCTTable+ChainCall.mm │ │ │ ├── WCTUpdate+Private.h │ │ │ ├── WCTUpdate.h │ │ │ └── WCTUpdate.mm │ │ ├── compatible │ │ │ ├── WCTCompatible.h │ │ │ ├── WCTCompatible.mm │ │ │ ├── WCTDatabase+Compatible.h │ │ │ ├── WCTDatabase+Compatible.mm │ │ │ ├── WCTStatement+Compatible.h │ │ │ ├── WCTStatement+Compatible.mm │ │ │ ├── WCTStatistics+Compatible.h │ │ │ ├── WCTStatistics+Compatible.mm │ │ │ ├── WCTTransaction+Compatible.h │ │ │ └── WCTTransaction+Compatible.mm │ │ ├── convenient │ │ │ ├── WCTInterface+Convenient.h │ │ │ ├── WCTInterface+Convenient.mm │ │ │ ├── WCTTable+Convenient.h │ │ │ └── WCTTable+Convenient.mm │ │ ├── core │ │ │ ├── WCTCore+Private.h │ │ │ ├── WCTCore.h │ │ │ ├── WCTCore.mm │ │ │ ├── WCTDatabase+Core.h │ │ │ ├── WCTDatabase+Core.mm │ │ │ ├── WCTInterface+Core.h │ │ │ ├── WCTInterface+Core.mm │ │ │ ├── WCTStatement+Private.h │ │ │ ├── WCTStatement.h │ │ │ ├── WCTStatement.mm │ │ │ ├── WCTValue.h │ │ │ └── WCTValue.mm │ │ ├── database │ │ │ ├── WCTDatabase+Database.h │ │ │ ├── WCTDatabase+Database.mm │ │ │ ├── WCTDatabase+File.h │ │ │ ├── WCTDatabase+File.mm │ │ │ ├── WCTDatabase+Private.h │ │ │ ├── WCTDatabase+RepairKit.h │ │ │ └── WCTDatabase+RepairKit.mm │ │ ├── declare │ │ │ ├── WCTDatabase.h │ │ │ ├── WCTDatabase.mm │ │ │ ├── WCTDeclare.h │ │ │ ├── WCTInterface.h │ │ │ ├── WCTInterface.mm │ │ │ ├── WCTTable.h │ │ │ └── WCTTable.mm │ │ ├── fts │ │ │ ├── WCTDatabase+FTS.h │ │ │ ├── WCTDatabase+FTS.mm │ │ │ ├── WCTTokenizer+Apple.h │ │ │ ├── WCTTokenizer+Apple.mm │ │ │ ├── WCTTokenizer+WCDB.h │ │ │ └── WCTTokenizer+WCDB.mm │ │ ├── orm │ │ │ ├── WCTORM.h │ │ │ ├── accessor │ │ │ │ ├── WCTBaseAccessor.h │ │ │ │ ├── WCTCppAccessor.h │ │ │ │ ├── WCTObjCAccessor.h │ │ │ │ ├── WCTRuntimeBaseAccessor.h │ │ │ │ ├── WCTRuntimeBaseAccessor.mm │ │ │ │ ├── WCTRuntimeCppAccessor.h │ │ │ │ ├── WCTRuntimeObjCAccessor.h │ │ │ │ └── WCTRuntimeObjCAccessor.mm │ │ │ ├── binding │ │ │ │ ├── WCTBinding.h │ │ │ │ ├── WCTBinding.mm │ │ │ │ ├── WCTColumnBinding.h │ │ │ │ ├── WCTColumnBinding.mm │ │ │ │ ├── WCTConstraintBinding.h │ │ │ │ ├── WCTConstraintBinding.mm │ │ │ │ ├── WCTIndexBInding.mm │ │ │ │ └── WCTIndexBinding.h │ │ │ ├── coding │ │ │ │ ├── WCTAnyProperty.h │ │ │ │ ├── WCTAnyProperty.mm │ │ │ │ ├── WCTCoding.h │ │ │ │ ├── WCTExpr.h │ │ │ │ ├── WCTExpr.mm │ │ │ │ ├── WCTProperty.h │ │ │ │ ├── WCTProperty.mm │ │ │ │ ├── WCTPropertyBase.h │ │ │ │ ├── WCTPropertyBase.mm │ │ │ │ ├── WCTResult.h │ │ │ │ ├── WCTResult.mm │ │ │ │ ├── WCTSelectBase+WCTExpr.h │ │ │ │ └── WCTSelectBase+WCTExpr.mm │ │ │ └── macro │ │ │ │ ├── WCTCodingMacro.h │ │ │ │ ├── WCTConstraintMacro.h │ │ │ │ ├── WCTIndexMacro.h │ │ │ │ ├── WCTMacroHelper.h │ │ │ │ └── WCTPropertyMacro.h │ │ ├── statictics │ │ │ ├── WCTChainCall+Statistics.h │ │ │ ├── WCTChainCall+Statistics.mm │ │ │ ├── WCTDatabase+Statistics.h │ │ │ ├── WCTDatabase+Statistics.mm │ │ │ ├── WCTError+Private.h │ │ │ ├── WCTError.h │ │ │ ├── WCTError.mm │ │ │ ├── WCTStatistics.h │ │ │ ├── WCTStatistics.mm │ │ │ ├── WCTTransaction+Statistics.h │ │ │ └── WCTTransaction+Statistics.mm │ │ ├── table │ │ │ ├── WCTDatabase+Table.h │ │ │ ├── WCTDatabase+Table.mm │ │ │ ├── WCTInterface+Table.h │ │ │ ├── WCTInterface+Table.mm │ │ │ ├── WCTTable+Database.h │ │ │ ├── WCTTable+Private.h │ │ │ ├── WCTTransaction+Table.h │ │ │ └── WCTTransaction+Table.mm │ │ └── transaction │ │ │ ├── WCTDatabase+Transaction.h │ │ │ ├── WCTDatabase+Transaction.mm │ │ │ ├── WCTTransaction+Private.h │ │ │ ├── WCTTransaction.h │ │ │ └── WCTTransaction.mm │ │ └── util │ │ ├── concurrent_list.hpp │ │ ├── error.cpp │ │ ├── error.hpp │ │ ├── file.cpp │ │ ├── file.hpp │ │ ├── macro.hpp │ │ ├── path.cpp │ │ ├── path.hpp │ │ ├── recyclable.hpp │ │ ├── rwlock.cpp │ │ ├── rwlock.hpp │ │ ├── spin.cpp │ │ ├── spin.hpp │ │ ├── thread_local.hpp │ │ ├── ticker.cpp │ │ ├── ticker.hpp │ │ ├── timed_queue.hpp │ │ └── utility.hpp │ ├── repair │ ├── SQLiteRepairKit.h │ ├── sqliterk.c │ ├── sqliterk.h │ ├── sqliterk_api.c │ ├── sqliterk_btree.c │ ├── sqliterk_btree.h │ ├── sqliterk_column.c │ ├── sqliterk_column.h │ ├── sqliterk_crypto.c │ ├── sqliterk_crypto.h │ ├── sqliterk_os.c │ ├── sqliterk_os.h │ ├── sqliterk_output.cpp │ ├── sqliterk_pager.c │ ├── sqliterk_pager.h │ ├── sqliterk_util.c │ ├── sqliterk_util.h │ ├── sqliterk_values.c │ └── sqliterk_values.h │ └── sqlcipher │ ├── ext │ ├── fts3 │ │ ├── fts3.c │ │ ├── fts3.h │ │ ├── fts3Int.h │ │ ├── fts3_aux.c │ │ ├── fts3_expr.c │ │ ├── fts3_hash.c │ │ ├── fts3_hash.h │ │ ├── fts3_icu.c │ │ ├── fts3_porter.c │ │ ├── fts3_snippet.c │ │ ├── fts3_tokenize_vtab.c │ │ ├── fts3_tokenizer.c │ │ ├── fts3_tokenizer1.c │ │ ├── fts3_unicode.c │ │ ├── fts3_unicode2.c │ │ └── fts3_write.c │ ├── icu │ │ ├── icu.c │ │ └── sqliteicu.h │ ├── rbu │ │ ├── sqlite3rbu.c │ │ └── sqlite3rbu.h │ ├── rtree │ │ ├── rtree.c │ │ ├── rtree.h │ │ └── sqlite3rtree.h │ └── userauth │ │ └── sqlite3userauth.h │ ├── fts3_tokenizer.h │ ├── fts5.c │ ├── fts5.h │ ├── keywordhash.h │ ├── opcodes.c │ ├── opcodes.h │ ├── parse.c │ ├── parse.h │ ├── parse.h.temp │ ├── sqlite3.h │ └── src │ ├── alter.c │ ├── analyze.c │ ├── attach.c │ ├── auth.c │ ├── backup.c │ ├── bitvec.c │ ├── btmutex.c │ ├── btree.c │ ├── btree.h │ ├── btreeInt.h │ ├── build.c │ ├── callback.c │ ├── complete.c │ ├── crypto.c │ ├── crypto.h │ ├── crypto_cc.c │ ├── crypto_impl.c │ ├── crypto_libtomcrypt.c │ ├── ctime.c │ ├── date.c │ ├── dbstat.c │ ├── delete.c │ ├── expr.c │ ├── fault.c │ ├── fkey.c │ ├── func.c │ ├── global.c │ ├── hash.c │ ├── hash.h │ ├── hwtime.h │ ├── insert.c │ ├── legacy.c │ ├── loadext.c │ ├── main.c │ ├── malloc.c │ ├── mem0.c │ ├── mem1.c │ ├── mem2.c │ ├── mem3.c │ ├── mem5.c │ ├── memjournal.c │ ├── msvc.h │ ├── mutex.c │ ├── mutex.h │ ├── mutex_noop.c │ ├── mutex_unix.c │ ├── mutex_wcdb.c │ ├── mutex_wcdb.h │ ├── notify.c │ ├── os.c │ ├── os.h │ ├── os_common.h │ ├── os_setup.h │ ├── os_unix.c │ ├── os_wcdb.c │ ├── os_wcdb.h │ ├── pager.c │ ├── pager.h │ ├── pcache.c │ ├── pcache.h │ ├── pcache1.c │ ├── pragma.c │ ├── pragma.h │ ├── prepare.c │ ├── printf.c │ ├── queue.c │ ├── queue.h │ ├── random.c │ ├── resolve.c │ ├── rowset.c │ ├── select.c │ ├── sqlcipher.h │ ├── sqlite3ext.h │ ├── sqliteInt.h │ ├── sqliteLimit.h │ ├── status.c │ ├── table.c │ ├── threads.c │ ├── tokenize.c │ ├── treeview.c │ ├── trigger.c │ ├── update.c │ ├── utf.c │ ├── util.c │ ├── vacuum.c │ ├── vdbe.c │ ├── vdbe.h │ ├── vdbeInt.h │ ├── vdbeapi.c │ ├── vdbeaux.c │ ├── vdbeblob.c │ ├── vdbemem.c │ ├── vdbesort.c │ ├── vdbetrace.c │ ├── vtab.c │ ├── vxworks.h │ ├── wal.c │ ├── wal.h │ ├── walker.c │ ├── where.c │ ├── whereInt.h │ ├── wherecode.c │ └── whereexpr.c ├── README.md ├── WX20171123-094615@2x.png ├── WX20171123-100853@2x.png ├── 数据库操作.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── iosdev.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── iosdev.xcuserdatad │ └── xcschemes │ ├── xcschememanagement.plist │ ├── 数据库操作 2.xcscheme │ └── 数据库操作.xcscheme ├── 数据库操作.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── iosdev.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── 数据库操作 ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── EditFMDB │ ├── EditFMDB.h │ └── EditFMDB.m ├── EditWCDB │ ├── WCDManager.h │ ├── WCDManager.mm │ ├── WCDModel+WCTTableCoding.h │ └── WCDModel+WCTTableCoding.mm ├── Extend │ ├── NSString+category.h │ ├── NSString+category.m │ ├── UIAlertController+GZRAlertController.h │ └── UIAlertController+GZRAlertController.m ├── Info.plist ├── Model │ ├── StudentModel.h │ ├── StudentModel.m │ ├── WCDModel.h │ └── WCDModel.m ├── RealmManager │ ├── RealmManager.h │ ├── RealmManager.m │ ├── RealmModel.h │ └── RealmModel.m ├── VC │ ├── AddStudentVC.h │ ├── AddStudentVC.m │ ├── EditDataVC.h │ ├── EditDataVC.m │ ├── ViewController.h │ └── ViewController.m ├── View │ ├── AddView.h │ ├── AddView.m │ ├── AddView.xib │ ├── PeopleCell.h │ ├── PeopleCell.m │ ├── QueryCell.h │ ├── QueryCell.m │ ├── QueryCell.xib │ ├── StudentCell.h │ ├── StudentCell.m │ └── StudentCell.xib └── main.m ├── 数据库操作Tests ├── Info.plist └── _____Tests.m └── 数据库操作UITests ├── Info.plist └── _____UITests.m /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/LICENSE.txt -------------------------------------------------------------------------------- /Pods/FMDB/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/README.markdown -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/FMDB/src/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/NSError+RLMSync.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMArray.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMArray_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMCollection_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMCollection_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMConstants.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMListBase.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMMigration.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMMigration_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObject.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObjectBase.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObjectSchema.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObjectStore.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMObject_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMOptionalBase.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMPlatform.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMProperty.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMProperty_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMRealm+Sync.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMRealm.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMRealmConfiguration+Sync.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealmConfiguration+Sync.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMRealm_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMResults.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMResults_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSchema.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSchema_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncCredentials.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncManager.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncManager_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncManager_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncPermission.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncSession.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncSubscription.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncUser.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncUtil.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMSyncUtil_Private.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncUtil_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Realm/Realm.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/Realm.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/SQLiteRepairKit.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/SQLiteRepairKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCDB.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/WCDB.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTAnyProperty.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTAnyProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTBaseAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTBaseAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTChainCall+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTChainCall+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTChainCall+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTChainCall+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTChainCall.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTChainCall.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTCoding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTCodingMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTCodingMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTColumnBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTColumnBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTCompatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTCompatible.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTConstraintBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTConstraintBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTConstraintMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTConstraintMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTCore+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTCore+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTCore.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTCore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTCppAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTCppAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTDatabase+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+Core.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTDatabase+Core.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+Database.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+Database.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+FTS.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/fts/WCTDatabase+FTS.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+File.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+File.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+RepairKit.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+RepairKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTDatabase+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+Table.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTDatabase+Table.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase+Transaction.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/transaction/WCTDatabase+Transaction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDeclare.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTDeclare.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDelete+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTDelete+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTDelete.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTDelete.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTError+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTError+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTError.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTExpr.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTExpr.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTIndexBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTIndexBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTIndexMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTIndexMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTInsert+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTInsert+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTInsert.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTInsert.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTInterface+ChainCall.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTInterface+ChainCall.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTInterface+Convenient.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/convenient/WCTInterface+Convenient.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTInterface+Core.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTInterface+Core.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTInterface+Table.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTInterface+Table.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTInterface.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTInterface.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTMacroHelper.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTMacroHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTMaster+WCTTableCoding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTMaster+WCTTableCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTMaster.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTMaster.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTMultiSelect+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTMultiSelect+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTMultiSelect.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTMultiSelect.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTORM.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/WCTORM.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTObjCAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTObjCAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTProperty.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTPropertyBase.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTPropertyBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTPropertyMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTPropertyMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTResult.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTResult.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTRowSelect+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTRowSelect+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTRowSelect.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTRowSelect.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTRuntimeBaseAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTRuntimeBaseAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTRuntimeCppAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTRuntimeCppAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTRuntimeObjCAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTRuntimeObjCAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSelect+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelect+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSelect.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelect.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSelectBase+NoARC.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelectBase+NoARC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSelectBase+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelectBase+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSelectBase+WCTExpr.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTSelectBase+WCTExpr.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSelectBase.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelectBase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSequence+WCTTableCoding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTSequence+WCTTableCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTSequence.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTStatement+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTStatement+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTStatement+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTStatement+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTStatement.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTStatement.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTStatistics+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTStatistics+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTStatistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTStatistics.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTable+ChainCall.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTTable+ChainCall.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTable+Convenient.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/convenient/WCTTable+Convenient.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTable+Database.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTTable+Database.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTable+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTTable+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTable.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTTable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTokenizer+Apple.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/fts/WCTTokenizer+Apple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTokenizer+WCDB.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/fts/WCTTokenizer+WCDB.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTransaction+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTTransaction+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTransaction+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/transaction/WCTTransaction+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTransaction+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTTransaction+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTransaction+Table.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTTransaction+Table.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/transaction/WCTTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTUpdate+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTUpdate+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTUpdate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/WCTValue.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/abstract.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/abstract.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/btree.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/btree.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/btreeInt.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/btreeInt.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/clause_join.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/clause_join.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/column.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/column_def.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_def.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/column_index.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_index.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/column_result.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_result.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/column_type.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_type.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/concurrent_list.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/concurrent_list.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/config.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/config.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/conflict.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/conflict.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/constraint_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/constraint_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/core_base.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/core_base.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/crypto.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/crypto.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/database.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/database.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/declare.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/declare.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/describable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/describable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/error.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/error.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/expr.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/expr.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/file.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/file.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/foreign_key.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/foreign_key.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/fts3.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/fts3/fts3.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/fts3Int.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/fts3/fts3Int.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/fts3_hash.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/fts3/fts3_hash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/fts3_tokenizer.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/fts3_tokenizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/fts5.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/fts5.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/fts_module.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/fts_module.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/fts_modules.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/fts_modules.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/handle.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/handle.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/handle_pool.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/handle_pool.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/handle_recyclable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/handle_recyclable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/handle_statement.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/handle_statement.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/hash.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/hash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/hwtime.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/hwtime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/keywordhash.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/keywordhash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/literal_value.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/literal_value.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/macro.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/macro.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/module_argument.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/module_argument.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/msvc.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/msvc.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/mutex.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/mutex.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/mutex_wcdb.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/mutex_wcdb.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/opcodes.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/opcodes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/order.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/order.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/order_term.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/order_term.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/os.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/os.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/os_common.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/os_common.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/os_setup.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/os_setup.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/os_wcdb.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/os_wcdb.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/pager.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/pager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/parse.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/parse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/path.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/path.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/pcache.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/pcache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/pragma.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/pragma.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/pragma.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/pragma.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/queue.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/queue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/recyclable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/recyclable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/rtree.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/rtree/rtree.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/rwlock.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/rwlock.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/spin.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/spin.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqlcipher.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/sqlcipher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqlite3.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/sqlite3.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqlite3ext.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/sqlite3ext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqlite3rbu.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/rbu/sqlite3rbu.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqlite3rtree.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/rtree/sqlite3rtree.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqlite3userauth.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/userauth/sqlite3userauth.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliteInt.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/sqliteInt.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliteLimit.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/sqliteLimit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliteicu.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/ext/icu/sqliteicu.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk_btree.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk_btree.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk_column.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk_column.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk_crypto.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk_crypto.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk_os.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk_os.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk_pager.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk_pager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk_util.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk_util.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/sqliterk_values.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/repair/sqliterk_values.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_alter_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_alter_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_attach.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_attach.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_create_index.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_create_index.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_create_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_create_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_create_virtual_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_create_virtual_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_delete.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_delete.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_detach.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_detach.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_drop_index.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_drop_index.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_drop_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_drop_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_explain.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_explain.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_insert.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_insert.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_pragma.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_pragma.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_recyclable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/statement_recyclable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_reindex.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_reindex.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_release.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_release.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_rollback.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_rollback.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_savepoint.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_savepoint.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_select.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_select.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_transaction.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_transaction.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_update.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_update.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/statement_vacuum.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_vacuum.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/subquery.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/subquery.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/thread_local.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/thread_local.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/ticker.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/ticker.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/timed_queue.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/timed_queue.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/tokenizer.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/tokenizer.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/transaction.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/transaction.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/utility.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/utility.hpp -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/vdbe.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/vdbe.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/vdbeInt.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/vdbeInt.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/vxworks.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/vxworks.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/wal.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/wal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/WCDB/whereInt.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/src/whereInt.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/NSError+RLMSync.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMArray.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMConstants.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMListBase.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMMigration.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMObject.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMObjectBase.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMObjectSchema.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMOptionalBase.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMPlatform.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMProperty.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMRealm+Sync.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMRealm.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMRealmConfiguration+Sync.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealmConfiguration+Sync.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMResults.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSchema.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncCredentials.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncManager.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncPermission.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncSession.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncSubscription.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncUser.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMSyncUtil.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Realm/Realm.h: -------------------------------------------------------------------------------- 1 | ../../../Realm/include/Realm.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCDB.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/WCDB.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTAnyProperty.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTAnyProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTBaseAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTBaseAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTChainCall+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTChainCall+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTChainCall+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTChainCall+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTChainCall.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTChainCall.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTCoding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTCodingMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTCodingMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTColumnBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTColumnBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTCompatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTCompatible.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTConstraintBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTConstraintBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTConstraintMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTConstraintMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTCore+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTCore+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTCore.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTCore.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTCppAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTCppAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTDatabase+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+Core.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTDatabase+Core.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+Database.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+Database.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+FTS.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/fts/WCTDatabase+FTS.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+File.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+File.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+RepairKit.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/database/WCTDatabase+RepairKit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTDatabase+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+Table.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTDatabase+Table.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase+Transaction.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/transaction/WCTDatabase+Transaction.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTDatabase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDeclare.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTDeclare.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDelete+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTDelete+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTDelete.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTDelete.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTError+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTError+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTError.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTExpr.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTExpr.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTIndexBinding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/binding/WCTIndexBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTIndexMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTIndexMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTInsert+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTInsert+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTInsert.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTInsert.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTInterface+ChainCall.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTInterface+ChainCall.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTInterface+Convenient.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/convenient/WCTInterface+Convenient.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTInterface+Core.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTInterface+Core.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTInterface+Table.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTInterface+Table.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTInterface.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTInterface.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTMacroHelper.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTMacroHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTMaster+WCTTableCoding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTMaster+WCTTableCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTMaster.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTMaster.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTMultiSelect+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTMultiSelect+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTMultiSelect.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTMultiSelect.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTORM.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/WCTORM.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTObjCAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTObjCAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTProperty.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTPropertyBase.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTPropertyBase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTPropertyMacro.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/macro/WCTPropertyMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTResult.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTResult.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTRowSelect+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTRowSelect+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTRowSelect.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTRowSelect.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTRuntimeBaseAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTRuntimeBaseAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTRuntimeCppAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTRuntimeCppAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTRuntimeObjCAccessor.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/accessor/WCTRuntimeObjCAccessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSelect+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelect+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSelect.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelect.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSelectBase+NoARC.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelectBase+NoARC.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSelectBase+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelectBase+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSelectBase+WCTExpr.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/orm/coding/WCTSelectBase+WCTExpr.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSelectBase.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTSelectBase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSequence+WCTTableCoding.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTSequence+WCTTableCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTSequence.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/builtin/WCTSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTStatement+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTStatement+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTStatement+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTStatement+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTStatement.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTStatement.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTStatistics+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTStatistics+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTStatistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTStatistics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTable+ChainCall.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTTable+ChainCall.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTable+Convenient.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/convenient/WCTTable+Convenient.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTable+Database.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTTable+Database.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTable+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTTable+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTable.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/declare/WCTTable.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTokenizer+Apple.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/fts/WCTTokenizer+Apple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTokenizer+WCDB.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/fts/WCTTokenizer+WCDB.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTransaction+Compatible.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/compatible/WCTTransaction+Compatible.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTransaction+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/transaction/WCTTransaction+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTransaction+Statistics.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/statictics/WCTTransaction+Statistics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTransaction+Table.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/table/WCTTransaction+Table.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/transaction/WCTTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTUpdate+Private.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTUpdate+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTUpdate.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/chaincall/WCTUpdate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/WCTValue.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/interface/core/WCTValue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/abstract.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/abstract.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/clause_join.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/clause_join.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/column.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/column_def.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_def.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/column_index.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_index.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/column_result.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_result.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/column_type.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/column_type.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/concurrent_list.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/concurrent_list.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/config.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/config.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/conflict.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/conflict.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/constraint_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/constraint_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/core_base.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/core_base.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/database.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/database.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/declare.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/declare.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/describable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/describable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/error.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/error.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/expr.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/expr.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/file.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/file.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/foreign_key.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/foreign_key.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/fts3_tokenizer.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/fts3_tokenizer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/fts_module.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/fts_module.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/fts_modules.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/fts_modules.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/handle.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/handle.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/handle_pool.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/handle_pool.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/handle_recyclable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/handle_recyclable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/handle_statement.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/handle_statement.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/literal_value.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/literal_value.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/macro.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/macro.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/module_argument.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/module_argument.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/order.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/order.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/order_term.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/order_term.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/path.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/path.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/pragma.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/pragma.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/recyclable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/recyclable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/rwlock.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/rwlock.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/spin.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/spin.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/sqlite3.h: -------------------------------------------------------------------------------- 1 | ../../../WCDB/sqlcipher/sqlite3.h -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_alter_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_alter_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_attach.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_attach.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_create_index.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_create_index.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_create_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_create_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_create_virtual_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_create_virtual_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_delete.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_delete.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_detach.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_detach.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_drop_index.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_drop_index.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_drop_table.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_drop_table.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_explain.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_explain.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_insert.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_insert.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_pragma.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_pragma.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_recyclable.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/statement_recyclable.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_reindex.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_reindex.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_release.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_release.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_rollback.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_rollback.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_savepoint.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_savepoint.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_select.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_select.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_transaction.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_transaction.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_update.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_update.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/statement_vacuum.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/statement_vacuum.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/subquery.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/abstract/subquery.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/thread_local.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/thread_local.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/ticker.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/ticker.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/timed_queue.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/timed_queue.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/tokenizer.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/tokenizer.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/transaction.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/core/transaction.hpp -------------------------------------------------------------------------------- /Pods/Headers/Public/WCDB/utility.hpp: -------------------------------------------------------------------------------- 1 | ../../../WCDB/objc/WCDB/util/utility.hpp -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Realm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/LICENSE -------------------------------------------------------------------------------- /Pods/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/README.md -------------------------------------------------------------------------------- /Pods/Realm/Realm/NSError+RLMSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/NSError+RLMSync.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/ObjectStore/src/list.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/ObjectStore/src/object.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/placeholder.cpp: -------------------------------------------------------------------------------- 1 | // This file is intentionally left blank. 2 | -------------------------------------------------------------------------------- /Pods/Realm/Realm/ObjectStore/src/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/ObjectStore/src/schema.cpp -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMClassInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMClassInfo.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMCollection.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMJSONModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMJSONModels.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMListBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMListBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMManagedArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMManagedArray.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMNetworkClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMNetworkClient.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMOptionalBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMOptionalBase.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMRealm+Sync.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncConfiguration.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncCredentials.m -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncManager.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncPermission.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncPermission.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncSession.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncSubscription.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncSubscription.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncUser.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMSyncUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMSyncUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMThreadSafeReference.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMThreadSafeReference.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Pods/Realm/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Pods/Realm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/build.sh -------------------------------------------------------------------------------- /Pods/Realm/core/librealmcore-ios.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/core/librealmcore-ios.a -------------------------------------------------------------------------------- /Pods/Realm/include/NSError+RLMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMAccessor.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMAccessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMArray_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMClassInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMClassInfo.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMCollection_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMJSONModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMJSONModels.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMMigration_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMNetworkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMNetworkClient.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObjectStore.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObject_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMObservation.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMPrefix.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMProperty_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMProperty_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMProperty_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMRealm_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMResults_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMResults_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSchema_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncManager_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncSubscription.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUser_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncUser_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncUtil_Private.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMSyncUtil_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMSyncUtil_Private.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/RLMUtil.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/Realm.h -------------------------------------------------------------------------------- /Pods/Realm/include/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/binding_context.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/alloc.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/array.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/bptree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/bptree.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/column.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/data_type.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/group.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/history.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/link_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/link_view.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/mixed.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/null.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/query.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/row.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/spec.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/table.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/table_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/table_ref.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/timestamp.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/unicode.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/any.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/config.h -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/enum.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/http.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/time.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/uri.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/util/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/util/utf8.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/utilities.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/version.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/core/realm/views.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/core/realm/views.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/execution_context_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/execution_context_id.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/feature_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/feature_checks.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/impl/list_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/impl/object_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/impl/object_notifier.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/index_set.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/list.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/object.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/object_accessor.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/object_schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/object_store.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/property.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/results.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/schema.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/shared_realm.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/sync_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/impl/sync_file.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/impl/work_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/impl/work_queue.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/partial_sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/partial_sync.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/sync_config.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/sync_manager.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_permission.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/sync_permission.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/sync_session.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/sync/sync_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/sync/sync_user.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/util/aligned_union.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/tagged_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/util/tagged_bool.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/util/time.hpp -------------------------------------------------------------------------------- /Pods/Realm/include/util/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Realm/include/util/uuid.hpp -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Target Support Files/FMDB/FMDB-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/WCDB/WCDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/Target Support Files/WCDB/WCDB-dummy.m -------------------------------------------------------------------------------- /Pods/WCDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/LICENSE -------------------------------------------------------------------------------- /Pods/WCDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/README.md -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/WCDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/WCDB.h -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/abstract.h -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/column.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/column.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/column_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/column_def.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/column_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/column_def.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/conflict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/conflict.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/conflict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/conflict.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/declare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/declare.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/expr.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/expr.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/fts_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/fts_module.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/fts_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/fts_module.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/handle.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/handle.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/order.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/order.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/order_term.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/order_term.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/order_term.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/order_term.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/pragma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/pragma.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/pragma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/pragma.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/statement.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/statement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/statement.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/subquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/subquery.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/abstract/subquery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/abstract/subquery.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/config.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/config.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/core_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/core_base.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/core_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/core_base.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/database.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/database.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/database_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/database_file.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/database_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/database_sql.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/handle_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/handle_pool.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/handle_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/handle_pool.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/tokenizer.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/tokenizer.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/transaction.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/core/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/core/transaction.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/interface/orm/WCTORM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/interface/orm/WCTORM.h -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/error.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/error.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/file.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/file.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/macro.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/path.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/path.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/recyclable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/recyclable.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/rwlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/rwlock.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/rwlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/rwlock.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/spin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/spin.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/spin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/spin.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/thread_local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/thread_local.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/ticker.cpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/ticker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/ticker.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/timed_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/timed_queue.hpp -------------------------------------------------------------------------------- /Pods/WCDB/objc/WCDB/util/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/objc/WCDB/util/utility.hpp -------------------------------------------------------------------------------- /Pods/WCDB/repair/SQLiteRepairKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/SQLiteRepairKit.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_api.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_btree.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_btree.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_column.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_column.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_column.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_crypto.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_crypto.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_os.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_os.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_output.cpp -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_pager.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_pager.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_util.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_util.h -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_values.c -------------------------------------------------------------------------------- /Pods/WCDB/repair/sqliterk_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/repair/sqliterk_values.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3Int.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3_aux.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3_expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3_expr.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3_hash.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3_hash.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3_icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3_icu.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3_porter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3_porter.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/fts3/fts3_snippet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/fts3/fts3_snippet.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/icu/icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/icu/icu.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/icu/sqliteicu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/icu/sqliteicu.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/rbu/sqlite3rbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/rbu/sqlite3rbu.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/rbu/sqlite3rbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/rbu/sqlite3rbu.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/rtree/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/rtree/rtree.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/ext/rtree/rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/ext/rtree/rtree.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/fts3_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/fts3_tokenizer.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/fts5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/fts5.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/fts5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/fts5.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/keywordhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/keywordhash.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/opcodes.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/opcodes.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/parse.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/parse.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/parse.h.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/parse.h.temp -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/sqlite3.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/alter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/alter.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/analyze.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/attach.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/auth.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/backup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/backup.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/bitvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/bitvec.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/btmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/btmutex.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/btree.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/btree.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/btreeInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/btreeInt.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/build.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/callback.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/complete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/complete.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/crypto.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/crypto.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/crypto_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/crypto_cc.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/crypto_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/crypto_impl.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/ctime.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/date.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/dbstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/dbstat.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/delete.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/expr.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/fault.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/fkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/fkey.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/func.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/global.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/hash.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/hash.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/hwtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/hwtime.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/insert.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/legacy.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/loadext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/loadext.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/main.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/malloc.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mem0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mem0.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mem1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mem1.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mem2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mem2.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mem3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mem3.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mem5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mem5.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/memjournal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/memjournal.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/msvc.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mutex.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mutex.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mutex_noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mutex_noop.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mutex_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mutex_unix.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mutex_wcdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mutex_wcdb.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/mutex_wcdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/mutex_wcdb.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/notify.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/os.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/os.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/os_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/os_common.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/os_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/os_setup.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/os_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/os_unix.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/os_wcdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/os_wcdb.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/os_wcdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/os_wcdb.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/pager.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/pager.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/pcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/pcache.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/pcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/pcache.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/pcache1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/pcache1.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/pragma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/pragma.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/pragma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/pragma.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/prepare.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/printf.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/queue.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/queue.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/random.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/resolve.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/rowset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/rowset.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/select.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/sqlcipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/sqlcipher.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/sqlite3ext.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/sqliteInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/sqliteInt.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/sqliteLimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/sqliteLimit.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/status.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/table.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/threads.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/tokenize.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/treeview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/treeview.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/trigger.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/update.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/utf.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/util.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vacuum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vacuum.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbe.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbe.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbeInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbeInt.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbeapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbeapi.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbeaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbeaux.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbeblob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbeblob.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbemem.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbesort.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vdbetrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vdbetrace.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vtab.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/vxworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/vxworks.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/wal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/wal.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/wal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/wal.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/walker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/walker.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/where.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/where.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/whereInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/whereInt.h -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/wherecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/wherecode.c -------------------------------------------------------------------------------- /Pods/WCDB/sqlcipher/src/whereexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/Pods/WCDB/sqlcipher/src/whereexpr.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/README.md -------------------------------------------------------------------------------- /WX20171123-094615@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/WX20171123-094615@2x.png -------------------------------------------------------------------------------- /WX20171123-100853@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/WX20171123-100853@2x.png -------------------------------------------------------------------------------- /数据库操作.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /数据库操作/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/AppDelegate.h -------------------------------------------------------------------------------- /数据库操作/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/AppDelegate.m -------------------------------------------------------------------------------- /数据库操作/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /数据库操作/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /数据库操作/EditFMDB/EditFMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/EditFMDB/EditFMDB.h -------------------------------------------------------------------------------- /数据库操作/EditFMDB/EditFMDB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/EditFMDB/EditFMDB.m -------------------------------------------------------------------------------- /数据库操作/EditWCDB/WCDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/EditWCDB/WCDManager.h -------------------------------------------------------------------------------- /数据库操作/EditWCDB/WCDManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/EditWCDB/WCDManager.mm -------------------------------------------------------------------------------- /数据库操作/EditWCDB/WCDModel+WCTTableCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/EditWCDB/WCDModel+WCTTableCoding.h -------------------------------------------------------------------------------- /数据库操作/Extend/NSString+category.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Extend/NSString+category.h -------------------------------------------------------------------------------- /数据库操作/Extend/NSString+category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Extend/NSString+category.m -------------------------------------------------------------------------------- /数据库操作/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Info.plist -------------------------------------------------------------------------------- /数据库操作/Model/StudentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Model/StudentModel.h -------------------------------------------------------------------------------- /数据库操作/Model/StudentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Model/StudentModel.m -------------------------------------------------------------------------------- /数据库操作/Model/WCDModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Model/WCDModel.h -------------------------------------------------------------------------------- /数据库操作/Model/WCDModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/Model/WCDModel.m -------------------------------------------------------------------------------- /数据库操作/RealmManager/RealmManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/RealmManager/RealmManager.h -------------------------------------------------------------------------------- /数据库操作/RealmManager/RealmManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/RealmManager/RealmManager.m -------------------------------------------------------------------------------- /数据库操作/RealmManager/RealmModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/RealmManager/RealmModel.h -------------------------------------------------------------------------------- /数据库操作/RealmManager/RealmModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/RealmManager/RealmModel.m -------------------------------------------------------------------------------- /数据库操作/VC/AddStudentVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/VC/AddStudentVC.h -------------------------------------------------------------------------------- /数据库操作/VC/AddStudentVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/VC/AddStudentVC.m -------------------------------------------------------------------------------- /数据库操作/VC/EditDataVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/VC/EditDataVC.h -------------------------------------------------------------------------------- /数据库操作/VC/EditDataVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/VC/EditDataVC.m -------------------------------------------------------------------------------- /数据库操作/VC/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/VC/ViewController.h -------------------------------------------------------------------------------- /数据库操作/VC/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/VC/ViewController.m -------------------------------------------------------------------------------- /数据库操作/View/AddView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/AddView.h -------------------------------------------------------------------------------- /数据库操作/View/AddView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/AddView.m -------------------------------------------------------------------------------- /数据库操作/View/AddView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/AddView.xib -------------------------------------------------------------------------------- /数据库操作/View/PeopleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/PeopleCell.h -------------------------------------------------------------------------------- /数据库操作/View/PeopleCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/PeopleCell.m -------------------------------------------------------------------------------- /数据库操作/View/QueryCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/QueryCell.h -------------------------------------------------------------------------------- /数据库操作/View/QueryCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/QueryCell.m -------------------------------------------------------------------------------- /数据库操作/View/QueryCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/QueryCell.xib -------------------------------------------------------------------------------- /数据库操作/View/StudentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/StudentCell.h -------------------------------------------------------------------------------- /数据库操作/View/StudentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/StudentCell.m -------------------------------------------------------------------------------- /数据库操作/View/StudentCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/View/StudentCell.xib -------------------------------------------------------------------------------- /数据库操作/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作/main.m -------------------------------------------------------------------------------- /数据库操作Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作Tests/Info.plist -------------------------------------------------------------------------------- /数据库操作Tests/_____Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作Tests/_____Tests.m -------------------------------------------------------------------------------- /数据库操作UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作UITests/Info.plist -------------------------------------------------------------------------------- /数据库操作UITests/_____UITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatRong6/DatabaseManager/HEAD/数据库操作UITests/_____UITests.m --------------------------------------------------------------------------------