|
From: Stephen J. <spj...@us...> - 2003-02-14 20:23:48
|
Update of /cvsroot/liblookdb/liblookdb/lookdbinterface In directory sc8-pr-cvs1:/tmp/cvs-serv7258 Modified Files: lookdbinterfaceoci.cpp Log Message: Bug fix for crash on Oracle/Solaris - patch submitted by Stephen Blackheath. Index: lookdbinterfaceoci.cpp =================================================================== RCS file: /cvsroot/liblookdb/liblookdb/lookdbinterface/lookdbinterfaceoci.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** lookdbinterfaceoci.cpp 22 Jan 2002 13:54:29 -0000 1.12 --- lookdbinterfaceoci.cpp 14 Feb 2003 20:23:45 -0000 1.13 *************** *** 1146,1150 **** char* columnName; ub4 colNameLength; ! ub1 colPrecision; sb1 colScale; ub1 isNullable; --- 1146,1154 ---- char* columnName; ub4 colNameLength; ! // Stephen Jackson 2003-02-14. colPrecision changed ! // from ub1 to sb2 because we are using an implicit ! // describe. Patch submitted by Stephen Blackheath. ! // c.f. http://www.csee.umbc.edu/help/oracle8/server.815/a67846/describe.htm ! sb2 colPrecision; sb1 colScale; ub1 isNullable; |