Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Konstantin Tokarev
26.02.2014, 00:38, Richard Gerd Kuesters rich...@humantech.com.br: hello all! :) i was reading some of webkit resources, and one of them is to provide local database storage, including sqlite3. ok, i'm developing a custom application with webkit, and i would like to expose my apps

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Allan Sandfeld Jensen
On Wednesday 26 February 2014, Konstantin Tokarev wrote: 26.02.2014, 00:38, Richard Gerd Kuesters rich...@humantech.com.br: hello all! :) i was reading some of webkit resources, and one of them is to provide local database storage, including sqlite3. ok, i'm developing a custom

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Konstantin Tokarev
26.02.2014, 13:26, Allan Sandfeld Jensen k...@carewolf.com: On Wednesday 26 February 2014, Konstantin Tokarev wrote:  26.02.2014, 00:38, Richard Gerd Kuesters rich...@humantech.com.br:  hello all! :)  i was reading some of webkit resources, and one of them is to provide  local database

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Konstantin Tokarev
26.02.2014, 13:29, Konstantin Tokarev annu...@yandex.ru: 26.02.2014, 13:26, Allan Sandfeld Jensen k...@carewolf.com:  On Wednesday 26 February 2014, Konstantin Tokarev wrote:   26.02.2014, 00:38, Richard Gerd Kuesters rich...@humantech.com.br:   hello all! :)   i was reading some of

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Richard Gerd Kuesters
Thanks Konstantin and Allan! I'm sorry to hear that this can't be done anymore, since it was a hope of mine to bring more logic to the JavaScript end of my application :) But that's ok, nevertheless I'll have a lot of work, lol. My best regards, Richard. On 02/26/2014 07:01 AM, Konstantin

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Allan Sandfeld Jensen
On Wednesday 26 February 2014, Richard Gerd Kuesters wrote: Thanks Konstantin and Allan! I'm sorry to hear that this can't be done anymore, since it was a hope of mine to bring more logic to the JavaScript end of my application :) But that's ok, nevertheless I'll have a lot of work, lol.

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Richard Gerd Kuesters
thanks Allan! the problem is: i would like to make usage of a database (created by me) that can have 400mb+ ... first of all, i don't know nothing about websql or the local storage api :) and second, how will webkit handle a database this size? best regards, richard. On 02/26/2014 09:41

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Allan Sandfeld Jensen
Hi Richard You can increase the default offline storage quota in QWebSettings or you can implement hooks in qwebpage that allows your specific application to go over the default quota of 5Mbyte. `Allan On Wednesday 26 February 2014, Richard Gerd Kuesters wrote: thanks Allan! the problem

Re: [webkit-qt] sqlite database as local storage

2014-02-26 Thread Richard Gerd Kuesters
thanks again Allan. i was talking about this issue with my team, and we kind of wrote off this possibility as our application runs on android too and, our main issue about this is memory usage ... we're thinking about a good old rest service in cpp to bridge between javascript and sqlite :)

[webkit-qt] sqlite database as local storage

2014-02-25 Thread Richard Gerd Kuesters
hello all! :) i was reading some of webkit resources, and one of them is to provide local database storage, including sqlite3. ok, i'm developing a custom application with webkit, and i would like to expose my apps database to it, so i can access it directly using javascript (instead of