Re: [sqlite] SQLite version 3.6.11

2009-02-18 Thread D. Richard Hipp
On Feb 18, 2009, at 5:04 AM, Marco Bambini wrote: > What about backup of encrypted databases? The backup API works with SEE-encrypted databases and with CEROD databases. D. Richard Hipp d...@hwaci.com ___ sqlite-users mailing list sqlite-users@sq

Re: [sqlite] SQLite version 3.6.11

2009-02-18 Thread Marco Bambini
What about backup of encrypted databases? -- Marco Bambini http://www.sqlabs.com http://www.creolabs.com/payshield/ On Feb 18, 2009, at 1:28 AM, D. Richard Hipp wrote: > SQLite version 3.6.11 is now available from the SQLite website: > > http://www.sqlite.org/ > > Version 3.6.11 adds su

Re: [sqlite] SQLite version 3.6.11

2009-02-17 Thread Zbigniew Baniewski
It seems to me, that at 1st time, it did "relink" using former version of library (3.6.10) - and that was probably that versioning problem - but at the second time, when I made a compilation after I've removed the earlier version, it was unable to relink it (no library: the former one has been dele

Re: [sqlite] SQLite version 3.6.11

2009-02-17 Thread Zbigniew Baniewski
And another problem - that I didn't met before: #v+ [..] echo 'package ifneeded sqlite3 3.6.11 [list load /Programs/SQLite/3.6.11/lib/tcl8.5/libtclsqlite3.so sqlite3]' > pkgIndex.tcl /System/Links/Executables/install -c -d /Programs/SQLite/3.6.11/lib/tcl8.5 ./libtool --mode=install /System/Links/

Re: [sqlite] SQLite version 3.6.11

2009-02-17 Thread Zbigniew Baniewski
Hmmm... maybe I did something wrong, but it seems to me rather, there's a minor bug: #v+ z...@trurl~$ rlwrap tclsh % package require sqlite3 attempt to provide package sqlite3 3.6.11 failed: package sqlite3 3.6.10 % provided instead % #v- #v+ r...@trurl~$ strings libtclsqlite3.so | g

Re: [sqlite] SQLite version 3.6.11

2009-02-17 Thread Zbigniew Baniewski
On Tue, Feb 17, 2009 at 07:28:27PM -0500, D. Richard Hipp wrote: > Version 3.6.11 adds support for a new live-backup API which enables > applications to make backup copies of SQLite databases It's great, that backup and restore have been added to the TCL interface as well. :) --