Re: [sqlite] Error: database or disk is full

2005-12-30 Thread Anton Kuznetsov
: "Alexander Kozlovsky" <[EMAIL PROTECTED]> To: "Anton Kuznetsov" <sqlite-users@sqlite.org> Sent: Friday, December 30, 2005 6:14 PM Subject: Re: [sqlite] Error: database or disk is full Do you have write permission on the directory containing the database file? In

[sqlite] Error: database or disk is full

2005-12-30 Thread Anton Kuznetsov
Hello. I use SQLite 3.2.8. When comitting a transaction I get an error "database or disk is full". But there is 6 Gb of free space on my hard drive. Database is about 4 Gb. There is no error when doing the same inserts but without transaction. Why does it happen? Thank you. Anton.

Re: [sqlite] sqlite 2.0 database

2005-11-07 Thread Anton Kuznetsov
Yes. That script works with versions 2.8.16 and 3.2.7. - Original Message - From: "Gerry Snyder" <[EMAIL PROTECTED]> To: <sqlite-users@sqlite.org> Sent: Tuesday, November 08, 2005 2:03 AM Subject: Re: [sqlite] sqlite 2.0 database Anton Kuznetsov wrote: H

Re: [sqlite] sqlite 2.0 database

2005-11-07 Thread Anton Kuznetsov
Hello, Manuel. Install TCLSQLite3(http://sqlite.org/tclsqlite-3_2_7.zip) and try the following script. It will convert your database into the SQLite3 database. ## package require sqlite package require sqlite3 sqlite pcdb pcdatabase sqlite3

[sqlite] Page size problem

2005-11-01 Thread Anton Kuznetsov
Hello! Did anybody try to create an SQLite3 database with a custom page_size (e.g. 8192) and fill it with data of more than 1Gb? As for me I didn't manage (using tclsqlite-3.2.7). It says "database disk image is malformed". Thanks. Anton.