Lines Matching refs:command

568      * Sets this <code>CachedRowSetImpl</code> object's command property
570 * if any, that were set for the previous command.
572 * The command property may not be needed
578 * that will be set as the command; may be <code>null</code>
601 * <code>execute</code>, such as the <code>command</code> property,
606 * <code>CachedRowSetImpl</code> object's command.
1413 * The query specified by the command property is executed to create a
3461 * is row 2, and so on. For example, the following command, in which
3475 * the following command moves the cursor to the fourth-to-last row, which
3555 * For example, the following command, in which
3571 * the following command moves the cursor to the fourth-to-last row, which
6826 private String buildTableName(String command) throws SQLException {
6834 command = command.trim();
6838 if(command.toLowerCase().startsWith("select")) {
6843 indexFrom = command.toLowerCase().indexOf("from");
6844 indexComma = command.indexOf(",", indexFrom);
6848 strTablename = (command.substring(indexFrom+"from".length(),command.length())).trim();
6870 } else if(command.toLowerCase().startsWith("insert")) {
6872 } else if(command.toLowerCase().startsWith("update")) {
7025 * command when the method <code>getMatchColumnIndexes</code> is called.
7054 * command when the method <code>getMatchColumn</code> is called.
7082 * command when the method <code>getMatchColumn</code> is called.
7110 * command when the method <code>getMatchColumn</code> is called.
7217 * <code>execute</code>, such as the <code>command</code> property,
7222 * <code>CachedRowSetImpl</code> object's command.