Java SQL Type isXMLType(int type)

Here you can find the source of isXMLType(int type)

Description

is XML Type

License

Apache License

Declaration

public static boolean isXMLType(int type) 

Method Source Code

//package com.java2s;
/*// ww w  .j a  v  a 2 s.c o m
 * SqlUtil.java
 *
 * This file is part of SQL Workbench/J, http://www.sql-workbench.net
 *
 * Copyright 2002-2017, Thomas Kellerer
 *
 * Licensed under a modified Apache License, Version 2.0
 * that restricts the use for certain governments.
 * You may not use this file except in compliance with the License.
 * You may obtain a copy of the License at.
 *
 *     http://sql-workbench.net/manual/license.html
 *
 * 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.
 *
 * To contact the author please send an email to: support@sql-workbench.net
 *
 */

import java.sql.Types;

public class Main {
    public static boolean isXMLType(int type) {
        return (type == Types.SQLXML);
    }

    public static boolean isXMLType(int type, String dbmsType) {
        if (type == Types.SQLXML)
            return true;
        if ("XMLTYPE".equals(dbmsType))
            return true;
        return false;
    }
}

Related

  1. isStringType(int type)
  2. isSupportedDataType(int type, String typeName)
  3. isTableMissing(Connection con)
  4. isTextType(int columnType)
  5. isValidReaderOrStream(final Object o)
  6. jdbcType2javaType(int jdbcType)
  7. jdbcTypeToKylinDataType(int sqlType)
  8. listToJson(List list)
  9. loadAllTypesData(Connection conn)

  10. HOME | Copyright © www.java2s.com 2016