Lines Matching defs:columnIdxes
6916 * @param columnIdxes the index into this rowset
6922 public void unsetMatchColumn(int[] columnIdxes) throws SQLException {
6925 for( int j= 0 ;j < columnIdxes.length; j++) {
6927 if(columnIdxes[j] != i_val) {
6932 for( int i = 0;i < columnIdxes.length ;i++) {
6945 * @param columnIdxes the index into this rowset
6951 public void unsetMatchColumn(String[] columnIdxes) throws SQLException {
6953 for(int j = 0 ;j < columnIdxes.length; j++) {
6954 if( !columnIdxes[j].equals(strMatchColumns.get(j)) ){
6959 for(int i = 0 ; i < columnIdxes.length; i++) {
7027 * @param columnIdxes the indexes into this rowset
7034 public void setMatchColumn(int[] columnIdxes) throws SQLException {
7036 for(int j = 0 ; j < columnIdxes.length; j++) {
7037 if( columnIdxes[j] < 0 ) {
7041 for(int i = 0 ;i < columnIdxes.length; i++) {
7042 iMatchColumns.add(i,Integer.valueOf(columnIdxes[i]));