Java SQL Type isBoolean(int dataType)

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

Description

is Boolean

License

Apache License

Declaration

public static boolean isBoolean(int dataType) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.sql.Types;

public class Main {
    public static boolean isBoolean(int dataType) {
        return dataType == Types.BOOLEAN;
    }/*from www .  j  a va 2s .c o  m*/
}

Related

  1. invokeJdbcMethod(Class interfaceClass, String methodName, Class[] argTypes, Object target, Object[] args)
  2. isBinary(int dataType)
  3. isBinary(int jdbcType)
  4. isBoolean(int ct)
  5. isBoolean(int dataType)
  6. isCharacterTypeWithLength(int aSqlType)
  7. isClobType(int sqlType)
  8. isDataNeedsQuotes(int type)
  9. isDigitalType(int sqlType)