Store connection configuration as key value pairs
Add migration for the sqlite database. Because the Qt SQL library is a bit hard to work with use sqlite through custom wrapper.
This commit is contained in:
parent
4caccf1000
commit
aac55b0ed1
17 changed files with 276439 additions and 384 deletions
|
|
@ -45,6 +45,8 @@ SOURCES += \
|
|||
catalog/PgConstraintContainer.cpp \
|
||||
ParamListJson.cpp \
|
||||
ParamListModel.cpp \
|
||||
sqlite/SQLiteConnection.cpp \
|
||||
sqlite/sqlite3.c \
|
||||
ui/catalog/tables/TableNode.cpp \
|
||||
ui/catalog/tables/TableSize.cpp \
|
||||
ui/catalog/tables/TableTreeBuilder.cpp \
|
||||
|
|
@ -89,6 +91,8 @@ SOURCES += \
|
|||
catalog/PgSequence.cpp \
|
||||
catalog/PgSequenceContainer.cpp \
|
||||
utils/HumanReadableBytes.cpp \
|
||||
utils/KeyStrengthener.cpp \
|
||||
utils/PasswordManager.cpp \
|
||||
utils/PostgresqlUrlParser.cpp
|
||||
|
||||
HEADERS += \
|
||||
|
|
@ -118,6 +122,9 @@ HEADERS += \
|
|||
catalog/PgConstraintContainer.h \
|
||||
ParamListJson.h \
|
||||
ParamListModel.h \
|
||||
sqlite/SQLiteConnection.h \
|
||||
sqlite/sqlite3.h \
|
||||
sqlite/sqlite3ext.h \
|
||||
ui/catalog/tables/TableNode.h \
|
||||
ui/catalog/tables/TableSize.h \
|
||||
ui/catalog/tables/TableTreeBuilder.h \
|
||||
|
|
@ -166,6 +173,8 @@ HEADERS += \
|
|||
catalog/PgSequence.h \
|
||||
catalog/PgSequenceContainer.h \
|
||||
utils/HumanReadableBytes.h \
|
||||
utils/KeyStrengthener.h \
|
||||
utils/PasswordManager.h \
|
||||
utils/PostgresqlUrlParser.h
|
||||
|
||||
unix {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue