Skip to content

Instantly share code, notes, and snippets.

@maplpro
Created September 22, 2010 12:24
Show Gist options
  • Save maplpro/591574 to your computer and use it in GitHub Desktop.
Save maplpro/591574 to your computer and use it in GitHub Desktop.
google closure gears on IE just returns
function testCreateTable() {
if (!database) {
return;
}
var created = database.queryValue('SELECT 1 FROM SQLITE_MASTER ' +
'WHERE TYPE=? AND NAME=?',
'table',
'Test') != null;
assertTrue('Test table could not be created', created);
assertEquals('Wrong number of rows after more insertions', 3,
database.queryValue('SELECT COUNT(*) FROM Test'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment