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 e836629 commit 353c1cbCopy full SHA for 353c1cb
1 file changed
plugins/dbms/sqlite/syntax.py
@@ -17,7 +17,7 @@ def __init__(self):
17
@staticmethod
18
def escape(expression, quote=True):
19
def escaper(value):
20
- return "X'%s'" % binascii.hexlify(value)
+ return "CAST(X'%s' AS TEXT)" % binascii.hexlify(value)
21
22
retVal = expression
23
0 commit comments