mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-04 06:01:59 +08:00
Add SQLServer support
This commit is contained in:
parent
c82d0a8c9d
commit
b3da9c67b3
1 changed files with 8 additions and 1 deletions
|
@ -13,7 +13,7 @@ defmodule Livebook.Runtime.Definitions do
|
|||
|
||||
kino_db = %{
|
||||
name: "kino_db",
|
||||
dependency: %{dep: {:kino_db, "~> 0.2.2"}, config: []}
|
||||
dependency: %{dep: {:kino_db, "~> 0.2.3"}, config: []}
|
||||
}
|
||||
|
||||
exqlite = %{
|
||||
|
@ -114,6 +114,13 @@ defmodule Livebook.Runtime.Definitions do
|
|||
%{
|
||||
name: "SQLite",
|
||||
packages: [kino_db, exqlite]
|
||||
},
|
||||
%{
|
||||
name: "SQLServer",
|
||||
packages: [
|
||||
kino_db,
|
||||
%{name: "tds", dependency: %{dep: {:tds, "~> 2.3.4"}, config: []}}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue