Re: [sqlite] Restrict SQLite to Single user mode usage

2012-01-04 Thread Stephan Beal
On Wed, Jan 4, 2012 at 2:44 PM, Pallavi Sharma wrote:

> I want to know how can i restrict the sqlite database usage to a single
> user mode.
>
>
On a Unix system:
# chown username dbname
# chmod 0600 dbname

but that won't protect it against the same user attaching to it multiple
times concurrently.

> . how can one achieve it like in sqlserver etc

sqlite3 is not a client-server db, and is missing several features which
you may be assuming it has. See:
http://sqlite.org/whentouse.html

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] Restrict SQLite to Single user mode usage

2012-01-04 Thread Pallavi Sharma
Hi,

I want to know how can i restrict the sqlite database usage to a single
user mode. how can one achieve it like in sqlserver etc


Regards
Pallavi
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users