Lines Matching refs:executeSQLCommand

72         executeSQLCommand("SHOW TABLES");  in prepareDataBase()
74executeSQLCommand("SELECT id AS \"test_run.id\", api_version_id, description, date FROM test_run" + in prepareDataBase()
79 executeSQLCommand("SELECT id AS api_version_id FROM api_version" + in prepareDataBase()
84 executeSQLCommand("INSERT api_version (api_name, version)" + in prepareDataBase()
86 executeSQLCommand("SELECT id AS api_version_id FROM api_version" + in prepareDataBase()
90 executeSQLCommand("INSERT test_run (api_version_id, description, date)" + in prepareDataBase()
92executeSQLCommand("SELECT test_run.id AS \"test_run.id\", api_version_id, description, date FROM t… in prepareDataBase()
105executeSQLCommand("SELECT id AS \"entry.id\", name AS \"entry.name\" FROM entry WHERE name = \"$En… in insertEntry()
107 executeSQLCommand("INSERT entry (name, type)" + in insertEntry()
109executeSQLCommand("SELECT id AS \"entry.id\", name AS \"entry.name\" FROM entry WHERE name = \"$En… in insertEntry()
111executeSQLCommand("SELECT id AS \"api_entry.id\", api_version_id AS \"api_entry.api_version_id\", … in insertEntry()
114 executeSQLCommand("INSERT api_entry (entry_id, api_version_id)"+ in insertEntry()
116executeSQLCommand("SELECT id AS \"api_entry.id\", api_version_id AS \"api_entry.api_version_id\", … in insertEntry()
119 executeSQLCommand("SELECT status AS \"test_state.status\" FROM test_state"+ in insertEntry()
124 executeSQLCommand("INSERT test_state (test_run_id, entry_id, status)"+ in insertEntry()
129 executeSQLCommand("UPDATE test_state SET status = \"$EntryState\""+ in insertEntry()