We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887152d commit 9448bf9Copy full SHA for 9448bf9
1 file changed
src/options.ts
@@ -33,9 +33,9 @@ export interface SplitterOptions {
33
}
34
35
export const defaultSplitterOptions: SplitterOptions = {
36
- stringsBegins: ["'"],
37
- stringsEnds: { "'": "'" },
38
- stringEscapes: { "'": "'" },
+ stringsBegins: ["'", '"'],
+ stringsEnds: { "'": "'", '"': '"' },
+ stringEscapes: { "'": "'", '"': '"' },
39
40
allowSemicolon: true,
41
allowCustomDelimiter: false,
@@ -134,4 +134,5 @@ export const firebirdSplitterOptions: SplitterOptions = {
134
...defaultSplitterOptions,
135
136
skipSeparatorBeginEnd: true,
137
+ queryParameterStyle: ':', // Firebird uses colon-prefixed parameters (:param_name)
138
};
0 commit comments