Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following method, when called with something like String val = getCell("SELECT col FROM table WHERE LIKE(other_col,'?')", new String[]{"value"}); (this is SQLite), throws a java.lang.ArrayIndexOutOfBoundsException: 0 at org.sqlite.PrepStmt.batch(PrepStmt.java:131). Can anyone take pity on my poor bumbling here and help me with why?

/**
 * Get a string representation of the first cell of the first row returned
 * by <code>sql</code>.
 *
 * @param sql        The SQL SELECT query, that may contain one or more '?'
 *                   IN parameter placeholders.
 * @param parameters A String array of parameters to insert into the SQL.
 * @return           The value of the cell, or <code>null</code> if there
 *                   was no result (or the result was <code>null</code>).
 */
public String getCell(String sql, String[] parameters) {
    String out = null;
    try {
        PreparedStatement ps = connection.prepareStatement(sql);
        for (int i = 1; i <= parameters.length; i++) {
            String parameter = parameters[i - 1];
            ps.setString(i, parameter);
        }
        ResultSet rs = ps.executeQuery();
        rs.first();
        out = rs.getString(1);
        rs.close();
        ps.close();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return out;
}

The setString() would, in this case, be ps.setString(1, "value") and should not be a problem. Obviously I'm wrong though.

Many thanks in advance.

share|improve this question

1 Answer

up vote 4 down vote accepted

Lose the quotes around the question mark. It should be LIKE(other_col,?). The prepared statement will figure out that you've got a string and add the quote marks itself.

(Does SQLite really do LIKE as a function LIKE(x,y) rather than an operator x LIKE y?)

share|improve this answer
I think Sqlite does both... x LIKE y is equivalent to calling the scalar function LIKE(x,y), which allows you to redefine how the operator works by redefining the function... – Stobor Jul 9 '09 at 4:19
2  
What a heinous use of superscript that was :-) – paxdiablo Jul 9 '09 at 4:22
Thank you! So simple. And I think I was still using LIKE(x,y) because I'd replaced some other function; SQLite does have the LIKE operator. – Sam Jul 9 '09 at 4:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.