Java SQL Type isBoolean(int ct)

Here you can find the source of isBoolean(int ct)

Description

is Boolean

License

Open Source License

Declaration

public static boolean isBoolean(int ct) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static boolean isBoolean(int ct) {
        return (ct == java.sql.Types.BIT || ct == java.sql.Types.BOOLEAN);
    }/* w  w w  . j a  v  a  2s .  co m*/
}

Related

  1. getViewIdsForTypes(Connection connection, String... types)
  2. indexOf(Object[] array, Object objectToFind)
  3. invokeJdbcMethod(Class interfaceClass, String methodName, Class[] argTypes, Object target, Object[] args)
  4. isBinary(int dataType)
  5. isBinary(int jdbcType)
  6. isBoolean(int dataType)
  7. isBoolean(int dataType)
  8. isCharacterTypeWithLength(int aSqlType)
  9. isClobType(int sqlType)