Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf55449 commit ebde4b1Copy full SHA for ebde4b1
2 files changed
plugins/dbms/mysql/fingerprint.py
@@ -174,7 +174,7 @@ def checkDbms(self):
174
infoMsg = "confirming %s" % DBMS.MYSQL
175
logger.info(infoMsg)
176
177
- result = inject.checkBooleanExpression("USER()=USER()")
+ result = inject.checkBooleanExpression("USER() LIKE USER()")
178
179
if not result:
180
warnMsg = "the back-end DBMS is not %s" % DBMS.MYSQL
xml/queries.xml
@@ -397,8 +397,7 @@
397
<dbms value="Firebird">
398
<cast query="CAST(%s AS VARCHAR(10000))"/>
399
<length query="CHAR_LENGTH(%s)"/>
400
- <!-- TODO: add proper value -->
401
- <delimiter query=""/>
+ <delimiter query="||"/>
402
<limit query="ROWS %d TO %d"/>
403
<limitregexp query="\s+ROWS\s+([\d]+)(\s+\TO\s+([\d]+))?"/>
404
<limitgroupstart query="1"/>
0 commit comments