tags:

views:

395

answers:

0

After creating a C# application for Windows that builds on top of the WebKit project I can successfully render HTML and make AJAX calls. My application uses the window.openDatabase call.

This method seems to exist in that a call to

if(window.openDatabase)

will evaluate to true. When the method is actually called to open the database, it will return null stating the database can not be opened.

I've found the following link for using this on WebKit for a Macintosh, but the same solution does not appear to be available for the windows build.

http://lists.apple.com/archives/Webkitsdk-dev/2008/Apr/msg00027.html

Does anyone know if this is available in the standard WebKit nightly builds for Windows and if so how to make this work?