zoukankan      html  css  js  c++  java
  • Mybatis 自己写字段映射时 jdbcType 类型


    /**
    * Identifies the generic SQL type {@code BIT}.
    */
    BIT(Types.BIT),
    /**
    * Identifies the generic SQL type {@code TINYINT}.
    */
    TINYINT(Types.TINYINT),
    /**
    * Identifies the generic SQL type {@code SMALLINT}.
    */
    SMALLINT(Types.SMALLINT),
    /**
    * Identifies the generic SQL type {@code INTEGER}.
    */
    INTEGER(Types.INTEGER),
    /**
    * Identifies the generic SQL type {@code BIGINT}.
    */
    BIGINT(Types.BIGINT),
    /**
    * Identifies the generic SQL type {@code FLOAT}.
    */
    FLOAT(Types.FLOAT),
    /**
    * Identifies the generic SQL type {@code REAL}.
    */
    REAL(Types.REAL),
    /**
    * Identifies the generic SQL type {@code DOUBLE}.
    */
    DOUBLE(Types.DOUBLE),
    /**
    * Identifies the generic SQL type {@code NUMERIC}.
    */
    NUMERIC(Types.NUMERIC),
    /**
    * Identifies the generic SQL type {@code DECIMAL}.
    */
    DECIMAL(Types.DECIMAL),
    /**
    * Identifies the generic SQL type {@code CHAR}.
    */
    CHAR(Types.CHAR),
    /**
    * Identifies the generic SQL type {@code VARCHAR}.
    */
    VARCHAR(Types.VARCHAR),
    /**
    * Identifies the generic SQL type {@code LONGVARCHAR}.
    */
    LONGVARCHAR(Types.LONGVARCHAR),
    /**
    * Identifies the generic SQL type {@code DATE}.
    */
    DATE(Types.DATE),
    /**
    * Identifies the generic SQL type {@code TIME}.
    */
    TIME(Types.TIME),
    /**
    * Identifies the generic SQL type {@code TIMESTAMP}.
    */
    TIMESTAMP(Types.TIMESTAMP),
    /**
    * Identifies the generic SQL type {@code BINARY}.
    */
    BINARY(Types.BINARY),
    /**
    * Identifies the generic SQL type {@code VARBINARY}.
    */
    VARBINARY(Types.VARBINARY),
    /**
    * Identifies the generic SQL type {@code LONGVARBINARY}.
    */
    LONGVARBINARY(Types.LONGVARBINARY),
    /**
    * Identifies the generic SQL value {@code NULL}.
    */
    NULL(Types.NULL),
    /**
    * Indicates that the SQL type
    * is database-specific and gets mapped to a Java object that can be
    * accessed via the methods getObject and setObject.
    */
    OTHER(Types.OTHER),
    /**
    * Indicates that the SQL type
    * is database-specific and gets mapped to a Java object that can be
    * accessed via the methods getObject and setObject.
    */
    JAVA_OBJECT(Types.JAVA_OBJECT),
    /**
    * Identifies the generic SQL type {@code DISTINCT}.
    */
    DISTINCT(Types.DISTINCT),
    /**
    * Identifies the generic SQL type {@code STRUCT}.
    */
    STRUCT(Types.STRUCT),
    /**
    * Identifies the generic SQL type {@code ARRAY}.
    */
    ARRAY(Types.ARRAY),
    /**
    * Identifies the generic SQL type {@code BLOB}.
    */
    BLOB(Types.BLOB),
    /**
    * Identifies the generic SQL type {@code CLOB}.
    */
    CLOB(Types.CLOB),
    /**
    * Identifies the generic SQL type {@code REF}.
    */
    REF(Types.REF),
    /**
    * Identifies the generic SQL type {@code DATALINK}.
    */
    DATALINK(Types.DATALINK),
    /**
    * Identifies the generic SQL type {@code BOOLEAN}.
    */
    BOOLEAN(Types.BOOLEAN),

    /* JDBC 4.0 Types */

    /**
    * Identifies the SQL type {@code ROWID}.
    */
    ROWID(Types.ROWID),
    /**
    * Identifies the generic SQL type {@code NCHAR}.
    */
    NCHAR(Types.NCHAR),
    /**
    * Identifies the generic SQL type {@code NVARCHAR}.
    */
    NVARCHAR(Types.NVARCHAR),
    /**
    * Identifies the generic SQL type {@code LONGNVARCHAR}.
    */
    LONGNVARCHAR(Types.LONGNVARCHAR),
    /**
    * Identifies the generic SQL type {@code NCLOB}.
    */
    NCLOB(Types.NCLOB),
    /**
    * Identifies the generic SQL type {@code SQLXML}.
    */
    SQLXML(Types.SQLXML),

    /* JDBC 4.2 Types */

    /**
    * Identifies the generic SQL type {@code REF_CURSOR}.
    */
    REF_CURSOR(Types.REF_CURSOR),

    /**
    * Identifies the generic SQL type {@code TIME_WITH_TIMEZONE}.
    */
    TIME_WITH_TIMEZONE(Types.TIME_WITH_TIMEZONE),

    /**
    * Identifies the generic SQL type {@code TIMESTAMP_WITH_TIMEZONE}.
    */
    TIMESTAMP_WITH_TIMEZONE(Types.TIMESTAMP_WITH_TIMEZONE);
  • 相关阅读:
    Django复习
    AI-CBV写法
    CHENGDU3-Restful API 接口规范、django-rest-framework框架
    人工智能玩具制作
    POJ 3176 Cow Bowling
    HDU 2044 一只小蜜蜂
    HDU 4662 MU Puzzle
    POJ 3262 Protecting the Flowers
    POJ 1862 Stripies
    POJ 1017 Packets
  • 原文地址:https://www.cnblogs.com/niuniu0108/p/14365950.html
Copyright © 2011-2022 走看看