-Oracle: silly typo fixed, thanks to tojocky (WSTRING_V / STRING_V variant in OCI8Connection::SetParam)

git-svn-id: svn://ultimatepp.org/upp/trunk@2532 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
rylek 2010-07-13 23:27:12 +00:00
parent b2eab2752f
commit ed1a718407

View file

@ -346,10 +346,10 @@ void OCI8Connection::SetParam(int i, const Value& q) {
SetRawParam(i, SqlRaw(q));
break;
case STRING_V:
SetParam(i, WString(q));
SetParam(i, String(q));
break;
case WSTRING_V:
SetParam(i, String(q));
SetParam(i, WString(q));
break;
case BOOL_V:
case INT_V: