Fixing MS-SQL variable sub.

This commit is contained in:
Michael Drury 2022-03-12 11:13:41 +00:00
parent 7f36cc97c9
commit 0d7db82c71
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ module MSSQLModule {
}
getBindingIdentifier(): string {
return `(@p${this.index++})`
return `@p${this.index++}`
}
getStringConcat(parts: string[]): string {