Home | History | Annotate | Download | only in storage

Lines Matching refs:tx

33 function testDBValues(tx, result) {
42 tx.executeSql("DROP TABLE DataTypeTestTable", [],
43 function(tx, result) {
46 function(tx, result) {
51 function fetchDBValuesStmt(tx, result) {
52 tx.executeSql("SELECT * FROM DataTypeTestTable", [],
54 function(tx,error) {
59 function insertTestValuesStmt(tx, result) {
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
63 function(tx, error) {
68 function createTestDBStmt(tx)
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
72 function(tx, error) {