Lines Matching refs:sqlCommand
156 Vector sqlCommand = new Vector(); in executeSQLCommand() local
157 sqlCommand.add(""); in executeSQLCommand()
187 if (vals.length != sqlCommand.size() && sqlCommand.size() > 1) { in executeSQLCommand()
193 boolean addNewVals = (sqlCommand.size() == 1); in executeSQLCommand()
199 … sqlCommand.add(i, (String)sqlCommand.get(0) + " " + pre + value + post); in executeSQLCommand()
203 … sqlCommand.set(i, (String)sqlCommand.get(i) + " " + pre + value + post); in executeSQLCommand()
210 for (int i=0; i<sqlCommand.size(); i++) { in executeSQLCommand()
211 sqlCommand.set(i, (String)sqlCommand.get(i) + " " + pre + value + post); in executeSQLCommand()
223 for (int i=0; i<sqlCommand.size(); i++) in executeSQLCommand()
224 sqlCommand.set(i, (String)sqlCommand.get(i) + " " + originalKey); in executeSQLCommand()
233 for (int i=0;i<sqlCommand.size(); i++) { in executeSQLCommand()
234 execute((String)sqlCommand.get(i), sqlOutput, update); in executeSQLCommand()