Re: [sqlite] ChangePassword method problem

2011-10-30 Thread Farhan Husain
the codepaths for this procedure in my code. Thanks! From: slav...@bigfraud.org Date: Mon, 24 Oct 2011 04:45:24 +0100 To: sqlite-users@sqlite.org Subject: Re: [sqlite] ChangePassword method problem On 24 Oct 2011, at 4:42am, Farhan Husain wrote: So, I was just wondering how

Re: [sqlite] ChangePassword method problem

2011-10-23 Thread Farhan Husain
: [sqlite] ChangePassword method problem Farhan Husain wrote: Aah, ok. So, for all the methods that act on the database I should explicitly add conn.Close() within the using conn scope? Well, I'm not familiar with your specific project; however, that does not sound like a bad idea

Re: [sqlite] ChangePassword method problem

2011-10-23 Thread Farhan Husain
Oct 2011, at 4:42am, Farhan Husain wrote: So, I was just wondering how you would deal with multiple processes accessing the database. You can't guarantee that all would be closing the connection properly. It would seem that if all connections needed to be closed before a proper

[sqlite] ChangePassword method problem

2011-10-22 Thread Farhan Husain
Hi, I just want to make sure that I am not doing something wrong, but I have a simple application that opens an encrypted database using it's password and calls the ChangePassword method on it (as shown on numerous posts in this forum). After the password is changed when I try to open the

Re: [sqlite] ChangePassword method problem

2011-10-22 Thread Farhan Husain
and win7) just to make sure it had nothing to do with the development machine. From: sql...@mistachkin.com To: sqlite-users@sqlite.org Date: Sat, 22 Oct 2011 19:38:58 -0700 Subject: Re: [sqlite] ChangePassword method problem Farhan Husain wrote: After the password is changed when I try

Re: [sqlite] ChangePassword method problem

2011-10-22 Thread Farhan Husain
something wrong with the coding but at this point I am not sure. From: sql...@mistachkin.com To: sqlite-users@sqlite.org Date: Sat, 22 Oct 2011 20:39:09 -0700 Subject: Re: [sqlite] ChangePassword method problem Farhan Husain wrote: I have tried opening all encrypted databases using both

Re: [sqlite] ChangePassword method problem

2011-10-22 Thread Farhan Husain
Aah, ok. So, for all the methods that act on the database I should explicitly add conn.Close() within the using conn scope? From: sql...@mistachkin.com To: sqlite-users@sqlite.org Date: Sat, 22 Oct 2011 22:04:33 -0700 Subject: Re: [sqlite] ChangePassword method problem One thing that