feat(nc-gui): enable sqlite integration in oss

This commit is contained in:
Ramesh Mane
2024-08-16 15:41:39 +00:00
parent 8e52d9eb94
commit 97ee31fb63
5 changed files with 52 additions and 8 deletions

View File

@@ -26,6 +26,8 @@ const connectionType = computed(() => {
return ClientType.PG
case integrationType.MySQL:
return ClientType.MYSQL
case integrationType.SQLITE:
return ClientType.SQLITE
default: {
return undefined
}