I have a websql database, that I'd like to point to the same location as local storage.
I can easily set the localstorage path with this (private) method:
[preferences _setLocalStorageDatabasePath:savePath];
However I can't find something similar for the WebSQL database. I read this post, but am confused what to do:
Can a WebKit-based Mac app use HTML5 databases from Safari?
I added WebDatabaseDirectory to my plist and pointed it to ~/Library/Application Support/MyApp but that doesn't seem to do anything.
What am I doing wrong?