mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Fix: sql plugins feature
* SQLDS: Use builtin annotation editor
Plus strict rule fixes
* MSSQL: Migrate query editor to React
* Make code editor work
* Make SQLOptions and SQLQuery in SQLDatasource and in Editor generic
* MSSQL: Fix ts issues
* Fix SQLDatasource refID
* Remove comment
* Revert "Make SQLOptions and SQLQuery in SQLDatasource and in Editor generic"
This reverts commit 1d15b4061a.
* Fix ts issues without generic
* TS
16 lines
522 B
TypeScript
16 lines
522 B
TypeScript
export function showDatabases() {
|
|
// Return only user defined databases
|
|
return `SELECT name FROM sys.databases WHERE name NOT IN ('master', 'tempdb', 'model', 'msdb');`;
|
|
}
|
|
|
|
export function showTables(dataset?: string) {
|
|
return `SELECT TABLE_NAME as name
|
|
FROM [${dataset}].INFORMATION_SCHEMA.TABLES
|
|
WHERE TABLE_TYPE = 'BASE TABLE'`;
|
|
}
|
|
|
|
export function getSchema(table?: string) {
|
|
return `SELECT COLUMN_NAME as 'column',DATA_TYPE as 'type'
|
|
FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='${table}';`;
|
|
}
|