Re: [sqlite] index organized table +compression

2005-09-18 Thread Kurt Welgehausen
> Does anybody know whether it is possible to compress ... I don't recall anyone having claimed to have done this. You can try searching the archives: > ... possible to create index organized tables within SQLite Not really. If you

Re: [sqlite] index organized table +compression

2005-09-18 Thread Martin Engelschalk
Hi Martin, I don't know about compression, but sqlite organizes the data by the INTEGER PRIMARY KEY, which every table contains either explicitly or implicitly. Martin Martin Pfeifle schrieb: Hello, I just started to consider the use of SQLite for a rather big project. For this project it

[sqlite] index organized table +compression

2005-09-18 Thread Martin Pfeifle
Hello, I just started to consider the use of SQLite for a rather big project. For this project it would be beneficial if the database supports index organized tables. Furthermore, it would be helpful, if we could compress the data by integrating compression techniques into the files os.c. Does