Skip to content

Commit

Permalink
Merge pull request #2395 from medspx/dbmanager_oracle_timestamp
Browse files Browse the repository at this point in the history
DBManager: support timestamp values for Oracle
  • Loading branch information
jef-n committed Oct 23, 2015
2 parents d6f66ee + 0aa0b4c commit 44590e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/db_manager/db_plugins/oracle/data_model.py
Expand Up @@ -64,6 +64,9 @@ def _sanitizeTableField(self, field):
if field.dataType.upper() == u"DATE":
return u"CAST({} AS VARCHAR2(8))".format(
self.db.quoteId(field.name))
if u"TIMESTAMP" in field.dataType.upper():
return u"TO_CHAR({}, 'YYYY-MM-DD HH:MI:SS.FF')".format(
self.db.quoteId(field.name))
if field.dataType.upper() == u"NUMBER":
if not field.charMaxLen:
return u"CAST({} AS VARCHAR2(135))".format(
Expand Down

0 comments on commit 44590e9

Please sign in to comment.