** Description changed: - this should not happen because i want to be able to get the data in the - database out of the database even if it is invalid -- the db stores data - and if i store something dumb it should just let me get it back. + This should not happen because I want to be able to get the data in the + database out of the database even if it is invalid. The database stores + data and if I store something dumb it should just let me get it back. - the only thing that really needs to change is lines 502-504 in + The only thing that really needs to change is lines 502-504 in statement.pyx: - - elif c.type in (MYSQL_TYPE_DATETIME, MYSQL_TYPE_TIMESTAMP, + - elif c.type in (MYSQL_TYPE_DATETIME, MYSQL_TYPE_TIMESTAMP, - MYSQL_TYPE_DATE) and d.t.year == 0: - val = None + elif c.type in (MYSQL_TYPE_DATETIME, MYSQL_TYPE_TIMESTAMP, + MYSQL_TYPE_DATE) and (d.t.year == 0 or d.t.month == 0 or + d.t.day == 0): + val = PyString_FromStringAndSize(&d.c, c.length) much better to deliver a meaningless string than a meaningful absence of data where there wasn't one.
-- You received this bug notification because you are a member of Agesys Team, which is subscribed to oursql. https://bugs.launchpad.net/bugs/1076592 Title: reading invalid dates from mysql db raises exception Status in oursql: New Bug description: This should not happen because I want to be able to get the data in the database out of the database even if it is invalid. The database stores data and if I store something dumb it should just let me get it back. The only thing that really needs to change is lines 502-504 in statement.pyx: - elif c.type in (MYSQL_TYPE_DATETIME, MYSQL_TYPE_TIMESTAMP, - MYSQL_TYPE_DATE) and d.t.year == 0: - val = None + elif c.type in (MYSQL_TYPE_DATETIME, MYSQL_TYPE_TIMESTAMP, + MYSQL_TYPE_DATE) and (d.t.year == 0 or d.t.month == 0 or + d.t.day == 0): + val = PyString_FromStringAndSize(&d.c, c.length) much better to deliver a meaningless string than a meaningful absence of data where there wasn't one. To manage notifications about this bug go to: https://bugs.launchpad.net/oursql/+bug/1076592/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~agesys-dev Post to : [email protected] Unsubscribe : https://launchpad.net/~agesys-dev More help : https://help.launchpad.net/ListHelp

