├── .gitignore ├── CMakeLists.txt ├── LICENSE.LGPL.txt ├── PostgresSchema.cpp ├── PostgresSchema.h ├── README.md ├── SchemaUpdater.cpp ├── SchemaUpdater.h ├── Sql.h ├── SqlCondition.cpp ├── SqlCondition.h ├── SqlConditionalQueryBuilderBase.cpp ├── SqlConditionalQueryBuilderBase.h ├── SqlCreateRule.h ├── SqlCreateTable.cpp ├── SqlCreateTable.h ├── SqlDelete.h ├── SqlDeleteQueryBuilder.cpp ├── SqlDeleteQueryBuilder.h ├── SqlExceptions.h ├── SqlGlobal.h ├── SqlGrantPermission.h ├── SqlGraphviz.h ├── SqlInsert.h ├── SqlInsertQueryBuilder.cpp ├── SqlInsertQueryBuilder.h ├── SqlInternals_p.h ├── SqlMonitor.cpp ├── SqlMonitor.h ├── SqlQuery.cpp ├── SqlQuery.h ├── SqlQueryBuilderBase.cpp ├── SqlQueryBuilderBase.h ├── SqlQueryCache.cpp ├── SqlQueryCache.h ├── SqlQueryManager.cpp ├── SqlQueryManager.h ├── SqlQueryWatcher.cpp ├── SqlQueryWatcher.h ├── SqlResources.qrc ├── SqlSchema.cpp ├── SqlSchema.h ├── SqlSchema_p.h ├── SqlSelect.h ├── SqlSelectQueryBuilder.cpp ├── SqlSelectQueryBuilder.h ├── SqlTransaction.cpp ├── SqlTransaction.h ├── SqlUpdateQueryBuilder.cpp ├── SqlUpdateQueryBuilder.h ├── SqlUtils.cpp ├── SqlUtils.h ├── kdthreadrunner.cpp ├── kdthreadrunner.h ├── procedures └── pre-create │ └── ACLTriggerFunctions.tsp ├── sqldetail.h └── tests ├── CMakeLists.txt ├── NewSchema.h ├── OldSchema.h ├── README.TXT ├── createruletest.cpp ├── createtabletest.cpp ├── deletequerybuildertest.cpp ├── deletetest.cpp ├── insertquerybuildertest.cpp ├── inserttest.cpp ├── schemaUpdates ├── 1.sql ├── 2.sql ├── 4.sql └── schemaUpdates.qrc ├── schematest.cpp ├── schemaupdatetest.cpp ├── selectquerybuildertest.cpp ├── selecttest.cpp ├── sqlutilstest.cpp ├── test_utils.h ├── testbase.cpp ├── testbase.h ├── testschema.cpp ├── testschema.h └── updatequerybuildertest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/LICENSE.LGPL.txt -------------------------------------------------------------------------------- /PostgresSchema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/PostgresSchema.cpp -------------------------------------------------------------------------------- /PostgresSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/PostgresSchema.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/README.md -------------------------------------------------------------------------------- /SchemaUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SchemaUpdater.cpp -------------------------------------------------------------------------------- /SchemaUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SchemaUpdater.h -------------------------------------------------------------------------------- /Sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/Sql.h -------------------------------------------------------------------------------- /SqlCondition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlCondition.cpp -------------------------------------------------------------------------------- /SqlCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlCondition.h -------------------------------------------------------------------------------- /SqlConditionalQueryBuilderBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlConditionalQueryBuilderBase.cpp -------------------------------------------------------------------------------- /SqlConditionalQueryBuilderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlConditionalQueryBuilderBase.h -------------------------------------------------------------------------------- /SqlCreateRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlCreateRule.h -------------------------------------------------------------------------------- /SqlCreateTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlCreateTable.cpp -------------------------------------------------------------------------------- /SqlCreateTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlCreateTable.h -------------------------------------------------------------------------------- /SqlDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlDelete.h -------------------------------------------------------------------------------- /SqlDeleteQueryBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlDeleteQueryBuilder.cpp -------------------------------------------------------------------------------- /SqlDeleteQueryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlDeleteQueryBuilder.h -------------------------------------------------------------------------------- /SqlExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlExceptions.h -------------------------------------------------------------------------------- /SqlGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlGlobal.h -------------------------------------------------------------------------------- /SqlGrantPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlGrantPermission.h -------------------------------------------------------------------------------- /SqlGraphviz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlGraphviz.h -------------------------------------------------------------------------------- /SqlInsert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlInsert.h -------------------------------------------------------------------------------- /SqlInsertQueryBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlInsertQueryBuilder.cpp -------------------------------------------------------------------------------- /SqlInsertQueryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlInsertQueryBuilder.h -------------------------------------------------------------------------------- /SqlInternals_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlInternals_p.h -------------------------------------------------------------------------------- /SqlMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlMonitor.cpp -------------------------------------------------------------------------------- /SqlMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlMonitor.h -------------------------------------------------------------------------------- /SqlQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQuery.cpp -------------------------------------------------------------------------------- /SqlQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQuery.h -------------------------------------------------------------------------------- /SqlQueryBuilderBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryBuilderBase.cpp -------------------------------------------------------------------------------- /SqlQueryBuilderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryBuilderBase.h -------------------------------------------------------------------------------- /SqlQueryCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryCache.cpp -------------------------------------------------------------------------------- /SqlQueryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryCache.h -------------------------------------------------------------------------------- /SqlQueryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryManager.cpp -------------------------------------------------------------------------------- /SqlQueryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryManager.h -------------------------------------------------------------------------------- /SqlQueryWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryWatcher.cpp -------------------------------------------------------------------------------- /SqlQueryWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlQueryWatcher.h -------------------------------------------------------------------------------- /SqlResources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlResources.qrc -------------------------------------------------------------------------------- /SqlSchema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlSchema.cpp -------------------------------------------------------------------------------- /SqlSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlSchema.h -------------------------------------------------------------------------------- /SqlSchema_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlSchema_p.h -------------------------------------------------------------------------------- /SqlSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlSelect.h -------------------------------------------------------------------------------- /SqlSelectQueryBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlSelectQueryBuilder.cpp -------------------------------------------------------------------------------- /SqlSelectQueryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlSelectQueryBuilder.h -------------------------------------------------------------------------------- /SqlTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlTransaction.cpp -------------------------------------------------------------------------------- /SqlTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlTransaction.h -------------------------------------------------------------------------------- /SqlUpdateQueryBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlUpdateQueryBuilder.cpp -------------------------------------------------------------------------------- /SqlUpdateQueryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlUpdateQueryBuilder.h -------------------------------------------------------------------------------- /SqlUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlUtils.cpp -------------------------------------------------------------------------------- /SqlUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/SqlUtils.h -------------------------------------------------------------------------------- /kdthreadrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/kdthreadrunner.cpp -------------------------------------------------------------------------------- /kdthreadrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/kdthreadrunner.h -------------------------------------------------------------------------------- /procedures/pre-create/ACLTriggerFunctions.tsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/procedures/pre-create/ACLTriggerFunctions.tsp -------------------------------------------------------------------------------- /sqldetail.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/NewSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/NewSchema.h -------------------------------------------------------------------------------- /tests/OldSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/OldSchema.h -------------------------------------------------------------------------------- /tests/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/README.TXT -------------------------------------------------------------------------------- /tests/createruletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/createruletest.cpp -------------------------------------------------------------------------------- /tests/createtabletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/createtabletest.cpp -------------------------------------------------------------------------------- /tests/deletequerybuildertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/deletequerybuildertest.cpp -------------------------------------------------------------------------------- /tests/deletetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/deletetest.cpp -------------------------------------------------------------------------------- /tests/insertquerybuildertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/insertquerybuildertest.cpp -------------------------------------------------------------------------------- /tests/inserttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/inserttest.cpp -------------------------------------------------------------------------------- /tests/schemaUpdates/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/schemaUpdates/1.sql -------------------------------------------------------------------------------- /tests/schemaUpdates/2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/schemaUpdates/2.sql -------------------------------------------------------------------------------- /tests/schemaUpdates/4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/schemaUpdates/4.sql -------------------------------------------------------------------------------- /tests/schemaUpdates/schemaUpdates.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/schemaUpdates/schemaUpdates.qrc -------------------------------------------------------------------------------- /tests/schematest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/schematest.cpp -------------------------------------------------------------------------------- /tests/schemaupdatetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/schemaupdatetest.cpp -------------------------------------------------------------------------------- /tests/selectquerybuildertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/selectquerybuildertest.cpp -------------------------------------------------------------------------------- /tests/selecttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/selecttest.cpp -------------------------------------------------------------------------------- /tests/sqlutilstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/sqlutilstest.cpp -------------------------------------------------------------------------------- /tests/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/test_utils.h -------------------------------------------------------------------------------- /tests/testbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/testbase.cpp -------------------------------------------------------------------------------- /tests/testbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/testbase.h -------------------------------------------------------------------------------- /tests/testschema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/testschema.cpp -------------------------------------------------------------------------------- /tests/testschema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/testschema.h -------------------------------------------------------------------------------- /tests/updatequerybuildertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDABLabs/sqlate/HEAD/tests/updatequerybuildertest.cpp --------------------------------------------------------------------------------