Code

That's the last of the RDBMS migration steps done! Yay!
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 21 Mar 2004 23:39:08 +0000 (23:39 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 21 Mar 2004 23:39:08 +0000 (23:39 +0000)
commit0afdb59a1aeb366ae1132f3d3d7e00410e962345
treeb1bc5b4cdfc754b7ac9c8b8ee02cd00948817746
parentdcce5d6b6dede488f3650e6b8ffc8939cb22a211
That's the last of the RDBMS migration steps done! Yay!

Note that the code currently has some unit testing issues:

- Metakit needs some attention in a couple of areas
- RDBMS backends are having trouble ordering their journal entries
  correctly. I'm going to be migrating them to use TIMESTAMP for the date
  column, but that's not necessarily going to fix things as mysql and
  postgresql both appear to have second granularity. Sqlite will ignore
  the data type as usual ;)

Next up is the datatype-ification of the RDBMS backends. Part of that will
involve the migration to numeric IDs, which will also be done in the *dbm
backends (already done in metakit). The ID exposed *above* the hyperdb
will be String, since so many things assume a string ID now.

git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2161 57a73879-2fb5-44c3-a270-3262357dd7e2
TODO.txt
roundup/admin.py
roundup/backends/back_metakit.py
roundup/backends/back_mysql.py
roundup/backends/back_postgresql.py
roundup/backends/back_sqlite.py
roundup/backends/indexer_rdbms.py [new file with mode: 0644]
roundup/backends/rdbms_common.py