Java SQL ResultSet Read getFlags(ResultSet rs)

Here you can find the source of getFlags(ResultSet rs)

Description

get Flags

License

Apache License

Declaration

static Flags getFlags(ResultSet rs) throws SQLException 

Method Source Code


//package com.java2s;
/*/*from   w  ww. ja v  a2 s .  co  m*/
 * Copyright 2010 the original author or authors.
 * 
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

import java.sql.ResultSet;
import java.sql.SQLException;

import javax.mail.Flags;

public class Main {
    private static Flags.Flag[] flagArray = { Flags.Flag.SEEN, Flags.Flag.ANSWERED, Flags.Flag.DELETED,
            Flags.Flag.FLAGGED, Flags.Flag.RECENT, Flags.Flag.DRAFT };
    private static String[] attrArray = { "seen", "answered", "deleted", "flagged", "recent", "draft" };

    static Flags getFlags(ResultSet rs) throws SQLException {
        Flags flags = new Flags();
        for (int i = 0; i < attrArray.length; i++) {
            if ("Y".equals(rs.getString(attrArray[i]))) {
                flags.add(flagArray[i]);
            }
        }
        return flags;
    }
}

Related

  1. getExplainPlan(ResultSet rs)
  2. getFieldNames(ResultSet rs)
  3. getFieldsPresentInResultSet(ResultSet rs)
  4. getFirstGeometryFieldIndex(ResultSet resultSet)
  5. getFirstInt(ResultSet resultSet)
  6. getGeneratedIdFromResultSet(ResultSet resultSet)
  7. getHashMap(ResultSet resultSet)
  8. getHeaders(ResultSetMetaData rsmd)
  9. getHighPrecisionString(ResultSet rs, int ix, int sql_type)