I am trying to create a simple sqlfiddle in sqlite (websql), but its not working. The sqlfiddle is at Sqlite (websql) Fiddle
When I press on the Build Schema
button, it goes into the build mode but stays there forever. Also, I don't see any error message. My internet connection is very good, so it cannot be due to a broken internet connection.
Question
Why is the Sqlite script below not building schema in sqlfiddle? May be I am missing something very basic.
SQlite Script being used
create table Items (Id integer PRIMARY KEY, ParentId integer);
insert into Items (Id, ParentId) values (1,0);