Skip to content

Commit 72f0781

Browse files
authored
Merge pull request #15 from RohitM-IN/development
Fixed #13 Value Parsing in placeholder for string placeholder type
2 parents 49dcf42 + 51c3b95 commit 72f0781

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlparser-devexpress",
3-
"version": "2.3.6",
3+
"version": "2.3.7",
44
"main": "src/index.js",
55
"type": "module",
66
"scripts": {

src/core/converter.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,13 @@ function DevExpressConverter() {
228228
// Handle object-based values
229229
if (typeof val === "object") {
230230
if (val.type === "placeholder") {
231-
return resolvePlaceholderFromResultObject(val.value);
231+
const placeholderValue = resolvePlaceholderFromResultObject(val.value);
232+
233+
if(val?.dataType === "string"){
234+
return placeholderValue?.toString();
235+
}
236+
237+
return placeholderValue;
232238
}
233239

234240
// Special handling for ISNULL function

src/core/parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ export function parse(input, variables = []) {
237237
case "placeholder": {
238238
const val = token.value.slice(1, -1);
239239
if (!variables.includes(val)) variables.push(val);
240-
return { type: "placeholder", value: val };
240+
return { ...token ,type: "placeholder", value: val };
241241
}
242242

243243
case "paren": {

src/core/tokenizer.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,17 @@ class Tokenizer {
4545
if (!type || type === "whitespace") return this.nextToken();
4646

4747
let value = match.groups[type];
48+
let dataType = null;
4849

4950
// Remove surrounding single quotes from placeholders
51+
if(type === "placeholder"){
52+
53+
if(value.startsWith("'") && value.endsWith("'")){
54+
dataType = "string";
55+
}
56+
57+
value = value.replace(/^[\s'"\(\)]+|[\s'"\(\)]+|[\s]+/g, "");
58+
}
5059
if (type === "placeholder") value = value.replace(/^[\s'"\(\)]+|[\s'"\(\)]+|[\s]+/g, "");
5160

5261
if (type === "operator") {
@@ -68,7 +77,7 @@ class Tokenizer {
6877
}
6978

7079

71-
return { type, value };
80+
return { type, value, ...(dataType !== null && { dataType }) };
7281
}
7382

7483
// If no valid token is found, throw an error with the remaining input for debugging

0 commit comments

Comments
 (0)