Skip to content

SQL (sqls)#

Server#

For more information about the LSP server, check sqls.

Installation#

go install github.com/lighttiger2505/sqls@latest

Debugger: Not available#


root_file: docs/manual-language-docs/lsp-sqls.md#

Sample configuration:#

(add-hook 'sql-mode-hook 'lsp)
(setq lsp-sqls-workspace-config-path nil)
(setq lsp-sqls-connections
    '(((driver . "mysql") (dataSourceName . "yyoncho:local@tcp(localhost:3306)/foo"))
      ((driver . "mssql") (dataSourceName . "Server=localhost;Database=sammy;User Id=yyoncho;Password=hunter2;"))
      ((driver . "postgresql") (dataSourceName . "host=127.0.0.1 port=5432 user=yyoncho password=local dbname=sammy sslmode=disable"))))

Alternatively, you can leave lsp-sqls-workspace-config-path to the default "workspace" value, and put a json file in <project>/.sqls/config.json containing

{
  "sqls": {
    "connections": [
      {
        "driver": "mysql",
        "dataSourceName": "yyoncho:local@tcp(localhost:3306)/foo"
      }, 
      …etc…
    ]
  }
}

Now lsp should start in sql-mode buffers, and you can pick a server connection with M-x lsp-execute-code-action and "Switch Connections" (or directly with M-x lsp-sql-switch-connection). You can change database with M-x lsp-execute-code-action and "Switch Database" (or M-x lsp-sql-switch-database).

Available configurations#

lsp-sqls-connections#

Type: (repeat (alist :key-type (choice (const :tag Driver driver) (const :tag Connection String dataSourceName)) :value-type string))

Default: nil

The connections to the SQL server(s).


lsp-sqls-server#

Type: file

Default: sqls

Path to the sqls binary.


lsp-sqls-timeout#

Type: number

Default: 0.5

Timeout to use for sqls requests.


lsp-sqls-workspace-config-path#

Type: (choice (const workspace) (const root))

Default: workspace

If non-nil then setup workspace configuration with json file path.



Last update: April 27, 2024