Re: [sqlite] Path Length Limit on Windows

2014-08-03 Thread brianok
Try Long Path Tool.I would recommend you to use it -- View this message in context: http://sqlite.1065341.n5.nabble.com/Path-Length-Limit-on-Windows-tp70642p77140.html Sent from the SQLite mailing list archive at Nabble.com. ___ sqlite-users mailing

Re: [sqlite] Path Length Limit on Windows

2013-08-30 Thread Jan Nijtmans
Date: Wed, 28 Aug 2013 14:21:24 -0400 From: Richard Hipp d...@sqlite.org The latest check-in on trunk adds a new windows VFS module called win32-longpath which accepts the full-length 32KB pathnames. Add the string win32-longpath as the 4th argument to sqlite3_open_v2() (on windows only, of

Re: [sqlite] Path Length Limit on Windows

2013-08-29 Thread Markus Schaber
Hi, Richard, Von Richard Hipp On Mon, Aug 26, 2013 at 10:39 AM, Markus Schaber m.scha...@codesys.comwrote: Having a closer look, this will only solve problems with pathes whose UTF8-encoding is longer than MAX_PATH bytes, but not with pathes which exceed the 260 character limit. The

Re: [sqlite] Path Length Limit on Windows

2013-08-29 Thread Jeff Archer
Date: Wed, 28 Aug 2013 14:21:24 -0400 From: Richard Hipp d...@sqlite.org The latest check-in on trunk adds a new windows VFS module called win32-longpath which accepts the full-length 32KB pathnames. Add the string win32-longpath as the 4th argument to sqlite3_open_v2() (on windows only, of

Re: [sqlite] Path Length Limit on Windows

2013-08-28 Thread Richard Hipp
On Mon, Aug 26, 2013 at 10:39 AM, Markus Schaber m.scha...@codesys.comwrote: Having a closer look, this will only solve problems with pathes whose UTF8-encoding is longer than MAX_PATH bytes, but not with pathes which exceed the 260 character limit. The latest check-in on trunk adds a new

Re: [sqlite] Path Length Limit on Windows

2013-08-26 Thread Markus Schaber
Hi, Richard, I myself wrote: Von: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] [snip] (2) SQLite version 3.8.0 allows for longer windows pathnames up to 3*MAX_PATH bytes, which is 3x more space that was allowed before. This is still not 32K but might be

[sqlite] Path Length Limit on Windows

2013-08-23 Thread Markus Schaber
Hi, During our internal tests, I recently stumbled across a problem when using SVN, which uses SQLite to manage the wc.db metadata database in the working copy. SVN itself uses the Apache APR as PAL, which internally uses the Windows Unicode APIs with the \\?\ path prefix, allowing path

Re: [sqlite] Path Length Limit on Windows

2013-08-23 Thread Richard Hipp
On Thu, Aug 22, 2013 at 10:38 AM, Markus Schaber m.scha...@codesys.comwrote: Hi, During our internal tests, I recently stumbled across a problem when using SVN, which uses SQLite to manage the wc.db metadata database in the working copy. SVN itself uses the Apache APR as PAL, which

Re: [sqlite] Path Length Limit on Windows

2013-08-23 Thread Markus Schaber
Hi, Richard, Von: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Thu, Aug 22, 2013 at 10:38 AM, Markus Schaber m.scha...@codesys.comwrote: During our internal tests, I recently stumbled across a problem when using SVN, which uses SQLite to manage the wc.db

Re: [sqlite] Path Length Limit on Windows

2013-08-23 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 22/08/13 07:38, Markus Schaber wrote: http://www.mail-archive.com/sqlite-users@sqlite.org/msg18707.html seems to indicate that SQLite is not using those APIs. On the other hand, that post is of 2006. There has been an open ticket about this for