Minor patch to add for OracleRaw type (against released 0.3.1 - sorry!

Issue #378 resolved
Former user created an issue

A patch to the released 0.3.1 oracle.py to add the OracleRaw datatype.

Tested (minimally) via:-

from sqlalchemy.databases.oracle import OracleRaw ... Column('spi1', OracleRaw(1), nullable=False), ... and ... return "%s(%r - spi1:%s)" % (self.class.name, self.id, hex(ord(self.spi1)) )

which shows the same value as Oracle's SqlPlus command line tool shows, at least.

Comments (4)

  1. Log in to comment