Re: [sqlite] sqlite3_temp_directory in main.c

2007-06-11 Thread weiyang wang
---Original Message- > From: weiyang wang [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 06, 2007 11:17 AM > To: sqlite-users@sqlite.org > Subject: Re: [sqlite] sqlite3_temp_directory in main.c > > the concern here is to configure the default temp directory in library > com

RE: [sqlite] sqlite3_temp_directory in main.c

2007-06-07 Thread Tom Briggs
Wednesday, June 06, 2007 11:17 AM > To: sqlite-users@sqlite.org > Subject: Re: [sqlite] sqlite3_temp_directory in main.c > > the concern here is to configure the default temp directory in library > compile time, on the OS porting layer. > in current version, the default value of

Re: [sqlite] sqlite3_temp_directory in main.c

2007-06-06 Thread weiyang wang
the concern here is to configure the default temp directory in library compile time, on the OS porting layer. in current version, the default value of sqlite3_temp_directory is hardcoded as 0 in main.c for all platforms. would it be better to make it configrable for different platforms and use PRA

RE: [sqlite] sqlite3_temp_directory in main.c

2007-06-06 Thread Tom Briggs
Why not just use PRAGMA temp_store_directory, as the comments directly above that line suggest? > -Original Message- > From: weiyang wang [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 06, 2007 7:09 AM > To: sqlite-users > Subject: [sqlite] sqlite3_temp_directory in main.c > > hi