Commit b8ded78
committed
Fix: remove broken applyFilterText in DibiFluentMssqlDataSource causing NN-prefix with Dibi 4.1+
The MSSQL-specific override used direct string interpolation for LIKE searches
(SQL injection risk, wrong double-quote string delimiters for MSSQL) and called
escapeText() in a way that resulted in double N-prefix (NN'...') with Dibi 4.1+
SqlsrvDriver. Removing the override lets the base class implementation handle
text filtering correctly via the %%~like~` modifier which invokes the driver's
escape method exactly once.
Fixes #9081 parent e7c487d commit b8ded78
1 file changed
+0
-27
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | 8 | | |
10 | 9 | | |
11 | | - | |
12 | 10 | | |
13 | 11 | | |
14 | 12 | | |
| |||
100 | 98 | | |
101 | 99 | | |
102 | 100 | | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | | - | |
127 | | - | |
128 | 101 | | |
0 commit comments