Re: [sqlite] Re: How do I know what DBs I have attached?

2007-03-11 Thread jose isaias cabrera
Wow! Tough guy. :-o - Original Message - From: "John Stanton" <[EMAIL PROTECTED]> To: <sqlite-users@sqlite.org> Sent: Sunday, March 11, 2007 1:00 PM Subject: Re: [sqlite] Re: How do I know what DBs I have attached? Sqlite is a library used to realize an em

Re: [sqlite] Re: How do I know what DBs I have attached?

2007-03-11 Thread John Stanton
Sqlite is a library used to realize an embedded RDBMS. Nowhere does it claim to be a nanny. jose isaias cabrera wrote: "Igor Tandetnik" wrote, jose isaias cabrera <[EMAIL PROTECTED]> wrote: What I would like to know is, how do I know if I have a db attached already? Realize that a set

Re: [sqlite] Re: How do I know what DBs I have attached?

2007-03-10 Thread jose isaias cabrera
"Igor Tandetnik" wrote, jose isaias cabrera <[EMAIL PROTECTED]> wrote: What I would like to know is, how do I know if I have a db attached already? Realize that a set of attached DBs is a property of a connection (a sqlite3* handle), not some kind of persistent state of the database. You

[sqlite] RE: How do I know what DBs I have attached?

2007-03-09 Thread RohitPatel9999
Command Syntax => ATTACH [DATABASE] database-filename AS database-name If it is possible, keep database-name unique for perticular database-filename i.e. when issuing attach database command, everytime it should be same for perticular database-filename. So no need to track, just try to attach db

[sqlite] Re: How do I know what DBs I have attached?

2007-03-09 Thread Igor Tandetnik
jose isaias cabrera <[EMAIL PROTECTED]> wrote: What I would like to know is, how do I know if I have a db attached already? Realize that a set of attached DBs is a property of a connection (a sqlite3* handle), not some kind of persistent state of the database. You seem to be under