Searched refs:executeSQLCommand (Results 1 – 4 of 4) sorted by relevance
| /AOO41X/main/qadevOOo/runner/stats/ |
| H A D | FatDataBaseOutProducer.java | 72 executeSQLCommand("SHOW TABLES"); in prepareDataBase() 74 …executeSQLCommand("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() 92 …executeSQLCommand("SELECT test_run.id AS \"test_run.id\", api_version_id, description, date FROM t… in prepareDataBase() 105 …executeSQLCommand("SELECT id AS \"entry.id\", name AS \"entry.name\" FROM entry WHERE name = \"$En… in insertEntry() 107 executeSQLCommand("INSERT entry (name, type)" + in insertEntry() 109 …executeSQLCommand("SELECT id AS \"entry.id\", name AS \"entry.name\" FROM entry WHERE name = \"$En… in insertEntry() [all …]
|
| H A D | ComplexDataBaseOutProducer.java | 94 …executeSQLCommand("SELECT id AS \"test_run.id\", api_version_id, description, date FROM test_run" + in prepareDataBase() 99 executeSQLCommand("SELECT id as api_version_id FROM api_version" + in prepareDataBase() 104 executeSQLCommand("INSERT api_version (api_name, version)" + in prepareDataBase() 106 executeSQLCommand("SELECT id as api_version_id FROM api_version" + in prepareDataBase() 109 executeSQLCommand("INSERT test_run (api_version_id, description, date)" + in prepareDataBase() 111 …executeSQLCommand("SELECT id AS \"test_run.id\", api_version_id, description, date FROM test_run" + in prepareDataBase() 128 …executeSQLCommand("SELECT id as \"entry.id\", name as \"entry.name\" FROM entry WHERE name = \"$En… in insertEntry() 134 executeSQLCommand("INSERT entry (name, type)" + in insertEntry() 136 …executeSQLCommand("SELECT id as \"entry.id\", name as \"entry.name\" FROM entry WHERE name = \"$En… in insertEntry() 140 …executeSQLCommand("SELECT id as \"api_entry.id\", api_version_id as \"api_entry.api_version_id\", … in insertEntry() [all …]
|
| H A D | DataBaseOutProducer.java | 169 protected boolean executeSQLCommand(String command, boolean mergeOutput) { in executeSQLCommand() method in DataBaseOutProducer 170 return mSqlExec.executeSQLCommand(command, mSqlInput, mSqlOutput, mergeOutput); in executeSQLCommand() 176 protected boolean executeSQLCommand(String command) { in executeSQLCommand() method in DataBaseOutProducer 177 return mSqlExec.executeSQLCommand(command, mSqlInput, mSqlOutput); in executeSQLCommand()
|
| H A D | SQLExecution.java | 131 public boolean executeSQLCommand(String command, Hashtable sqlInput, Hashtable sqlOutput) in executeSQLCommand() method in SQLExecution 133 return executeSQLCommand(command, sqlInput, sqlOutput, false); in executeSQLCommand() 145 …public boolean executeSQLCommand(String command, Hashtable sqlInput, Hashtable sqlOutput, boolean … in executeSQLCommand() method in SQLExecution
|