Re: [sqlite] sqlite3_temp_directory in main.c

2007-06-11 Thread weiyang wang
l 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 > compile

RE: [sqlite] sqlite3_temp_directory in main.c

2007-06-07 Thread Tom Briggs
, 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 > sqlit

Re: [sqlite] sqlite3_temp_directory in main.c

2007-06-06 Thread weiyang wang
rom: 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, > > i found the following line in main.c > > char *sqlite3_temp_directory = 0; > > which seems

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_dire

[sqlite] sqlite3_temp_directory in main.c

2007-06-06 Thread weiyang wang
hi, i found the following line in main.c char *sqlite3_temp_directory = 0; which seems to remove the possibilities that the customer platform could specify sqlite3_temp_directory. i suggest that this line is removed. any comments? thanks in advance. wang

Re: [sqlite] sqlite3_temp_directory

2004-10-07 Thread Doug Currie
extended > error information, call GetLastError. > > Remarks > > This function has no effect on the system environment variables or the environment > variables of other processes. e > -Original Message- > From: D. Richard Hipp [mailto:[EMAIL PROTECTED] > Sent

RE: [sqlite] sqlite3_temp_directory

2004-10-07 Thread MacLeod, Kenneth
- From: D. Richard Hipp [mailto:[EMAIL PROTECTED] Sent: 07 October 2004 13:56 To: [EMAIL PROTECTED] Subject: Re: [sqlite] sqlite3_temp_directory MacLeod, Kenneth wrote: > Is there any way to change the sqlite3_temp_directory global? I'm running > sqlite under iis and the user doesn't have

[sqlite] sqlite3_temp_directory

2004-10-07 Thread MacLeod, Kenneth
Is there any way to change the sqlite3_temp_directory global? I'm running sqlite under iis and the user doesn't have write access to their temp directory. I've made my own little function and exported it through the def file. Is it possible to include something like this in a future release,