What do the three dots after "Object" mean in this parameter declaration:
public static int queryCount (
Connection conn, String whereClause,
Object ... params)
throws Exception
In what way does it differ from the parameter declaration Object params
?