Java SQL Type isClobType(int sqlType)

Here you can find the source of isClobType(int sqlType)

Description

is Clob Type

License

Open Source License

Declaration

public static boolean isClobType(int sqlType) 

Method Source Code

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

import java.sql.Types;

public class Main {
    public static boolean isClobType(int sqlType) {
        if (sqlType == Types.CLOB || sqlType == Types.LONGVARCHAR
                || sqlType == Types.NCLOB || sqlType == Types.LONGNVARCHAR) {
            return true;
        } else {/* w  ww  . j a  v a 2s.com*/
            return false;
        }
    }
}

Related

  1. isBinary(int jdbcType)
  2. isBoolean(int ct)
  3. isBoolean(int dataType)
  4. isBoolean(int dataType)
  5. isCharacterTypeWithLength(int aSqlType)
  6. isDataNeedsQuotes(int type)
  7. isDigitalType(int sqlType)
  8. isJDBCType(final int type)
  9. isLobColumn(int dataType)