Re: [sqlite] when A table in the database is locked

2009-04-09 Thread Arthur Skowronek
Joanne Pham wrote:
> Hi All,
Hi Joanne Pham,

> I have seen the define for SQLITE_LOCKED as below
> #define SQLITE_LOCKED   6   /* A table in the database is locked */
> I thought the SQLITE is database locking so I was wondering when the table in 
> the database is locked?
> Thanks,
you're right. But there are diffrent forms of locking. You can read
more about it on the SQLite website

http://www.sqlite.org/lang_transaction.html

Kind regards,
 Arthur S.
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] when A table in the database is locked

2009-04-09 Thread Igor Tandetnik
Joanne Pham  wrote:
> I have seen the define for SQLITE_LOCKED as below
> #define SQLITE_LOCKED 6 /* A table in the database is locked */
> I thought the SQLITE is database locking so I was wondering when the
> table in the database is locked?

http://sqlite.org/sharedcache.html

Igor Tandetnik 



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


[sqlite] when A table in the database is locked

2009-04-09 Thread Joanne Pham
Hi All,
I have seen the define for SQLITE_LOCKED as below
    #define SQLITE_LOCKED   6   /* A table in the database is locked */
I thought the SQLITE is database locking so I was wondering when the table in 
the database is locked?
Thanks,
JP



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