Changes between Version 1 and Version 2 of OracleBranch


Ignore:
Timestamp:
Apr 19, 2007, 2:34:24 PM (17 years ago)
Author:
ian.g.kelly@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OracleBranch

    v1 v2  
    4747=== Empty strings ===
    4848
    49 Django generally prefers to use the empty string ('') rather than NULL, but Oracle treats the empty string as NULL.  To get around this, the oracle backend silently changes '' to ' ' when saving data. The inverse operation is automatically performed by !OracleQuerySet.resolve_columns when fetching from the database.
     49Django generally prefers to use the empty string (!'') rather than NULL, but Oracle treats the empty string as NULL.  To get around this, the oracle backend silently changes !'' to ' ' when saving data. The inverse operation is automatically performed by !OracleQuerySet.resolve_columns when fetching from the database.
    5050
    5151=== Datetime conversion ===
Back to Top