mimuel1 <[EMAIL PROTECTED]> wrote:
- with access it is possible to integrate "pseudo-stored-procedure".
can I do this with SQLite too?

SQLite has triggers, which can be used as poor man's stored procedures. That's the only kind of "code" that can be stored in a database. Your program can install custom functions.

- where can I find ODBC-driver for SQLite?

Google is your friend: http://www.google.com/search?q=sqlite+odbc+driver

The first result is http://www.ch-werner.de/sqliteodbc/

- is it possible to split the SQLite-db-file? 4TB ist very big!

You can have a single connection access multiple SQLite database files with ATTACH command:
http://www.sqlite.org/lang_attach.html

Igor Tandetnik

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to