Re: SQLite revOpenDatabase() and Relative File Paths

2014-02-20 Thread Kay C Lan
Devin, Doc, Thanks, that nailed it. On Thu, Feb 20, 2014 at 11:34 PM, Devin Asay wrote: > You don't need the leading "/" in the relative file path. With the > defaultFolder set to the parent folder of Folder Name, you simply use > "Folder Name/mySQLite.db" as the path. > >

Re: SQLite revOpenDatabase() and Relative File Paths

2014-02-20 Thread Dr. Hawkins
On Thu, Feb 20, 2014 at 7:34 AM, Devin Asay wrote: > On Feb 19, 2014, at 10:54 PM, Kay C Lan wrote: > > > > get revOpenDatabase("sqlite","/Folder Name/mySQLite.db",,,) > > You don't need the leading "/" in the relative file path. With the > defaultFolder set to the parent folder of Folder Name

Re: SQLite revOpenDatabase() and Relative File Paths

2014-02-20 Thread Devin Asay
On Feb 19, 2014, at 10:54 PM, Kay C Lan wrote: > This works > > put the defaultFolder & "/Folder Name/mySQLite.db" into tPath > get revOpenDatabase("sqlite",tPath,,,) > > But this doesn't > > get revOpenDatabase("sqlite","/Folder Name/mySQLite.db",,,) > > I thought the point of the defaultFo

Re: SQLite revOpenDatabase() and Relative File Paths

2014-02-20 Thread Jan Schenkel
an Schenkel. = Quartam Reports & PDF Library for LiveCode www.quartam.com = "As we grow older, we grow both wiser and more foolish at the same time." (La Rochefoucauld) ---- On Wed, 2/19/14, Kay C Lan wrote: Subject: SQLite revOp

SQLite revOpenDatabase() and Relative File Paths

2014-02-19 Thread Kay C Lan
This works put the defaultFolder & "/Folder Name/mySQLite.db" into tPath get revOpenDatabase("sqlite",tPath,,,) But this doesn't get revOpenDatabase("sqlite","/Folder Name/mySQLite.db",,,) I thought the point of the defaultFolder was so you didn't have to continually build full file paths but c