in reply to Typeless Relational Database

Howdy!

SQLite has not discarded the flexibility, although it does now store integers as integers, it still permits you to store arbitrary data in a column. Most (every other?) RDBMS uses container typing (the column is declared with a type and you have to conform), but SQLite uses value typing (where the type is associated with the value, much the way Perl scalars work).

SQLite is that "typeless" RDBMS you are looking for.

yours,
Michael