mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Oracle: SQLT_TIMESTAMP support (thanks alendar)
git-svn-id: svn://ultimatepp.org/upp/trunk@2931 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
879433b74d
commit
f36070c3cb
2 changed files with 15 additions and 0 deletions
|
|
@ -727,6 +727,10 @@ bool OCI8Connection::GetColumnInfo() {
|
|||
ii.type = STRING_V;
|
||||
AddColumn(SQLT_STR, 64);
|
||||
break;
|
||||
case SQLT_TIMESTAMP: // type 187
|
||||
ii.type = STRING_V;
|
||||
AddColumn(SQLT_STR, 30);
|
||||
break;
|
||||
default:
|
||||
ii.type = STRING_V;
|
||||
AddColumn(SQLT_STR, ii.width ? ii.width + 1 : longsize);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue