Fixing MS-SQL variable sub.

This commit is contained in:
Michael Drury 2022-03-12 11:13:41 +00:00
parent ffbf3a2eca
commit 84f1325320
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 {