hi,

i'm using sqlite3 in a small project that will run on multiple servers.
only one of the instances will be read-write to the database, the others are
all read-only.  i understand that the recommended process for replication on
the read-write instance looks something like:

BEGIN EXCLUSIVE;
<copy database file>
COMMIT;

is it roughly the same on the read-only (destination) side?  in other words
is:

BEGIN EXCLUSIVE;
<copy new file into place>
COMMIT;

the correct procedure?

-- 
Cyrus.
<[EMAIL PROTECTED]>

Reply via email to