{"record":{"id":"4d1a3d5afe55107d","repo":"sqlmapproject/sqlmap","slug":"parameter-binding-is-not-supported-pass-a-fully-f-4d1a3d","errorCode":null,"errorMessage":"parameter binding is not supported; pass a fully-formed query string","messagePattern":"parameter binding is not supported; pass a fully-formed query string","errorType":"exception","errorClass":"NotSupportedError","httpStatus":null,"severity":"error","filePath":"extra/dbwire/sybase.py","lineNumber":302,"sourceCode":"\ndef _raise_server_error(number, message):\n    if number in (2601, 2615, 2627, 1105, 546, 547):    # duplicate key/row, constraint, foreign key\n        raise IntegrityError(message)\n    if number in (247, 249, 257, 260, 264, 512, 8115):  # conversion, overflow, arithmetic\n        raise DataError(message)\n    raise ProgrammingError(message)\n\nclass Cursor(object):\n    def __init__(self, connection):\n        self.connection = connection\n        self.description = None\n        self.rowcount = -1\n        self._rows = []\n        self._pos = 0\n\n    def execute(self, query, params=None):\n        if params is not None:\n            raise NotSupportedError(\"parameter binding is not supported; pass a fully-formed query string\")\n        self.description, self.rowcount, self._rows, self._pos = None, -1, [], 0\n        self.description, self._rows, affected = self.connection._query(query)\n        self.rowcount = len(self._rows) if self.description is not None else (affected if affected is not None else -1)\n        return self\n\n    def fetchall(self):\n        retVal = self._rows[self._pos:]\n        self._pos = len(self._rows)\n        return retVal\n\n    def fetchone(self):\n        if self._pos >= len(self._rows):\n            return None\n        retVal = self._rows[self._pos]\n        self._pos += 1\n        return retVal\n\n    def close(self):","sourceCodeStart":284,"sourceCodeEnd":320,"githubUrl":"https://github.com/sqlmapproject/sqlmap/blob/0a35b20e3953d341be6c7ac75ccb0b3362540c8d/extra/dbwire/sybase.py#L284-L320","documentation":"Error \"parameter binding is not supported; pass a fully-formed query string\" thrown in sqlmapproject/sqlmap.","triggerScenarios":"Thrown at extra/dbwire/sybase.py:302 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"0a35b20e3953d341be6c7ac75ccb0b3362540c8d","analyzedAt":"2026-08-26T23:02:52.002Z","schemaVersion":2},"datasetVersion":"2026-08-27T03:17:27.898Z"}