Re: [sqlite] sqlite db transfer

2014-07-17 Thread RSmith
Hi Sky, The read-only mode for opening the database is simply you telling the sqlite engine that you do not intend to write to this database and so it doesn't try to acquire write-locks on it during the life of that connection, and your connection cannot make changes to it in any way (even if

Re: [sqlite] sqlite db transfer

2014-07-17 Thread Sky Meena
thank you.. how can i use sqlite_db_readonly function.. On Thu, Jul 17, 2014 at 5:40 PM, Sky Meena wrote: > i will explain.. i created a sqlite db.. now i should tranfer it also > transfered.. while opening a db it should ask password.. for that while > creating db i

Re: [sqlite] sqlite db transfer

2014-07-17 Thread Sky Meena
i will explain.. i created a sqlite db.. now i should tranfer it also transfered.. while opening a db it should ask password.. for that while creating db i should enable some password or read only mode.. On Thu, Jul 17, 2014 at 4:27 PM, Kees Nuyt wrote: > On Thu, 17 Jul 2014

Re: [sqlite] sqlite db transfer

2014-07-17 Thread Kees Nuyt
On Thu, 17 Jul 2014 15:17:07 +0530, Sky Meena wrote: > i sent a sqlite db from server to client using c program .. in this how i > set a password for the db to open in sqlite browser... In short: you can't. SQLite does not implement SQL access control (GRANT/REVOKE).

Re: [sqlite] sqlite db transfer

2014-07-17 Thread Simon Slavin
On 17 Jul 2014, at 10:47am, Sky Meena wrote: > i sent a sqlite db from server to client using c program SQLite does not involve a server. It runs on one computer and takes instructions only from that computer. > .. in this how i > set a password for the db to open in

Re: [sqlite] sqlite db transfer

2014-07-17 Thread Sky Meena
i sent a sqlite db from server to client using c program .. in this how i set a password for the db to open in sqlite browser... On Fri, May 9, 2014 at 6:05 PM, Simon Slavin wrote: > > On 9 May 2014, at 1:23pm, Sky Meena wrote: > > > i working in

Re: [sqlite] sqlite db transfer

2014-05-09 Thread Simon Slavin
On 9 May 2014, at 1:23pm, Sky Meena wrote: > i working in server client... c program. i need to transfer db from server > to client. in udp socket .. i to send a db. SQLite does not involve a server or a client. All processing and access of the database is done inside

[sqlite] sqlite db transfer

2014-05-09 Thread Sky Meena
i working in server client... c program. i need to transfer db from server to client. in udp socket .. i to send a db. ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users