Lines Matching refs:key
171 String key = originalKey.substring(index+1); in executeSQLCommand() local
174 while (key.endsWith(",") || key.endsWith("\'") || in executeSQLCommand()
175 key.endsWith(";") || key.endsWith(")") || in executeSQLCommand()
176 key.endsWith("\"")) { in executeSQLCommand()
177 post = key.substring(key.length()-1) + post; in executeSQLCommand()
178 key = key.substring(0, key.length()-1); in executeSQLCommand()
181 if (sqlInput.containsKey(key)) { in executeSQLCommand()
183 Object in = sqlInput.get(key); in executeSQLCommand()
189 … throw new IllegalArgumentException("The key '" + key + "' in command \n'" in executeSQLCommand()
209 String value = checkForQuotationMarks((String)sqlInput.get(key)); in executeSQLCommand()
217 throw new IllegalArgumentException ("The key '" + key + "' in command \n'" in executeSQLCommand()
239 String key = (String)keys.nextElement(); in executeSQLCommand() local
240 String[]val = (String[])sqlOutput.get(key); in executeSQLCommand()
243 sqlInput.put(key, val[0]); in executeSQLCommand()
245 sqlInput.put(key, val); in executeSQLCommand()