mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 06:31:50 +08:00
20 lines
616 B
TypeScript
20 lines
616 B
TypeScript
import { ScopedVars } from '@grafana/data';
|
|
import { TemplateSrv } from '@grafana/runtime';
|
|
import { applyQueryDefaults, SQLQuery, SqlQueryModel } from '@grafana/sql';
|
|
|
|
export class MSSqlQueryModel implements SqlQueryModel {
|
|
target: SQLQuery;
|
|
templateSrv?: TemplateSrv;
|
|
scopedVars?: ScopedVars;
|
|
|
|
constructor(target?: SQLQuery, templateSrv?: TemplateSrv, scopedVars?: ScopedVars) {
|
|
this.target = applyQueryDefaults(target || { refId: 'A' });
|
|
this.templateSrv = templateSrv;
|
|
this.scopedVars = scopedVars;
|
|
}
|
|
|
|
quoteLiteral(value: string) {
|
|
return "'" + value.replace(/'/g, "''") + "'";
|
|
}
|
|
}
|