Added support for fixed char and old style varchar attribute values.

This commit is contained in:
Anthony Tuininga 2008-09-12 18:32:04 +00:00
parent 479e1f138e
commit 16d796d70e

View File

@ -200,6 +200,8 @@ static PyObject *ExternalObjectVar_ConvertToPython(
}
switch (typeCode) {
case OCI_TYPECODE_CHAR:
case OCI_TYPECODE_VARCHAR:
case OCI_TYPECODE_VARCHAR2:
stringValue = OCIStringPtr(environment->handle,
* (OCIString**) value);