You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQLParser is a JavaScript library that converts SQL-like filter strings into DevExpress format filters. It provides utilities for parsing, sanitizing, and converting SQL-like expressions into a format that can be used with DevExpress components.
3
+
SQLParser is a JavaScript library that converts SQL`WHERE` clauses into a structured **Abstract Syntax Tree (AST)** and transforms them into DevExpress filter format. It removes inline parameters while preserving them as dynamic variables for flexible query processing.
4
4
5
-
## Usage
5
+
## Features
6
6
7
-
### Convert SQL to AST
7
+
-**AST-Based Query Processing**: Parses `WHERE` clauses and generates a structured AST.
8
+
-**Supports Dynamic Parameters**: Identifies and extracts placeholders (`{param}`) for dynamic resolution.
9
+
-**Parameter Cleanup**: Removes inline parameters while maintaining their structure.
10
+
-**DevExpress-Compatible Output**: Converts parsed SQL conditions into the DevExpress filter format.
11
+
-**Short-Circuit Optimization**: By default, eliminates `value = value` expressions for DevExpress compatibility (can be disabled for performance optimization).
12
+
-**Separation of Concerns**: Generate AST once, then use it for multiple state updates.
8
13
9
-
To convert a SQL-like filter string to an Abstract Syntax Tree (AST):
14
+
## Example Workflow
15
+
16
+
### **Step 1: Input SQL**
17
+
18
+
```sql
19
+
WHERE OrderID = {CustomerOrders.OrderID} AND Status IN (1, 3)
20
+
```
21
+
22
+
### **Step 2: Generate AST**
10
23
11
24
```javascript
12
-
constfilterString="(ID <> {Item.ID}) AND (ItemGroupType IN ({Item.AllowedItemGroupType}))";
The parser identifies placeholders within the SQL query and extracts them for dynamic value resolution.
61
+
62
+
#### **Example Output:**
63
+
```json
64
+
[
65
+
"CustomerOrders.OrderID"
66
+
]
67
+
```
68
+
69
+
These extracted variables can be used to fetch the corresponding state values in the application. You can store them in a `Record<string, any>`, where the key is the placeholder name, and the value is the resolved data from the application's state.
0 commit comments