PostgreSQL与Java JDBC数据类型对照

 序号数据库类型Java类型JDBC索引JDBC类型
1varcharjava.lang.String12VARCHAR
2charjava.lang.String1CHAR
3cidrjava.lang.Object1111OTHER
4inetjava.lang.Object1111OTHER
5macaddrjava.lang.Object1111OTHER
6textjava.lang.String12VARCHAR
7int8java.lang.Long-5BIGINT
8byteabyte-2BINARY
9boxjava.lang.Object1111OTHER
10circlejava.lang.Object1111OTHER
11float8java.lang.Double8DOUBLE
12int4java.lang.Integer4INTEGER
13intervaljava.lang.Object1111OTHER
14linejava.lang.Object1111OTHER
15lsegjava.lang.Object1111OTHER
16moneyjava.lang.Double8DOUBLE
17numericjava.math.BigDecimal2NUMERIC
18pathjava.lang.Object1111OTHER
19pointjava.lang.Object1111OTHER
20polygonjava.lang.Object1111OTHER
21float4java.lang.Float7REAL
22int2java.lang.Integer5SMALLINT
23timejava.sql.Time92TIME
24timestampjava.sql.Timestamp93TIMESTAMP
25bitjava.lang.Boolean-7BIT
26varbitjava.lang.Object1111OTHER
27booljava.lang.Boolean-7BIT

JdbcType 

public enum JdbcType {/** This is added to enable basic support for the* ARRAY data type - but a custom type handler is still required*/ARRAY(Types.ARRAY),BIT(Types.BIT),TINYINT(Types.TINYINT),SMALLINT(Types.SMALLINT),INTEGER(Types.INTEGER),BIGINT(Types.BIGINT),FLOAT(Types.FLOAT),REAL(Types.REAL),DOUBLE(Types.DOUBLE),NUMERIC(Types.NUMERIC),DECIMAL(Types.DECIMAL),CHAR(Types.CHAR),VARCHAR(Types.VARCHAR),LONGVARCHAR(Types.LONGVARCHAR),DATE(Types.DATE),TIME(Types.TIME),TIMESTAMP(Types.TIMESTAMP),BINARY(Types.BINARY),VARBINARY(Types.VARBINARY),LONGVARBINARY(Types.LONGVARBINARY),NULL(Types.NULL),OTHER(Types.OTHER),BLOB(Types.BLOB),CLOB(Types.CLOB),BOOLEAN(Types.BOOLEAN),CURSOR(-10), // OracleUNDEFINED(Integer.MIN_VALUE + 1000),NVARCHAR(Types.NVARCHAR), // JDK6NCHAR(Types.NCHAR), // JDK6NCLOB(Types.NCLOB), // JDK6STRUCT(Types.STRUCT),JAVA_OBJECT(Types.JAVA_OBJECT),DISTINCT(Types.DISTINCT),REF(Types.REF),DATALINK(Types.DATALINK),ROWID(Types.ROWID), // JDK6LONGNVARCHAR(Types.LONGNVARCHAR), // JDK6SQLXML(Types.SQLXML), // JDK6DATETIMEOFFSET(-155); // SQL Server 2008public final int TYPE_CODE;private static Map<Integer,JdbcType> codeLookup = new HashMap<Integer,JdbcType>();static {for (JdbcType type : JdbcType.values()) {codeLookup.put(type.TYPE_CODE, type);}}JdbcType(int code) {this.TYPE_CODE = code;}public static JdbcType forCode(int code)  {return codeLookup.get(code);}}

Types

/*** <P>The class that defines the constants that are used to identify generic* SQL types, called JDBC types.* <p>* This class is never instantiated.*/
public class Types {/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>BIT</code>.*/public final static int BIT             =  -7;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>TINYINT</code>.*/public final static int TINYINT         =  -6;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>SMALLINT</code>.*/public final static int SMALLINT        =   5;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>INTEGER</code>.*/public final static int INTEGER         =   4;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>BIGINT</code>.*/public final static int BIGINT          =  -5;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>FLOAT</code>.*/public final static int FLOAT           =   6;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>REAL</code>.*/public final static int REAL            =   7;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>DOUBLE</code>.*/public final static int DOUBLE          =   8;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>NUMERIC</code>.*/public final static int NUMERIC         =   2;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>DECIMAL</code>.*/public final static int DECIMAL         =   3;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>CHAR</code>.*/public final static int CHAR            =   1;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>VARCHAR</code>.*/public final static int VARCHAR         =  12;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>LONGVARCHAR</code>.*/public final static int LONGVARCHAR     =  -1;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>DATE</code>.*/public final static int DATE            =  91;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>TIME</code>.*/public final static int TIME            =  92;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>TIMESTAMP</code>.*/public final static int TIMESTAMP       =  93;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>BINARY</code>.*/public final static int BINARY          =  -2;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>VARBINARY</code>.*/public final static int VARBINARY       =  -3;/*** <P>The constant in the Java programming language, sometimes referred* to as a type code, that identifies the generic SQL type* <code>LONGVARBINARY</code>.*/public final static int LONGVARBINARY   =  -4;/*** <P>The constant in the Java programming language* that identifies the generic SQL value* <code>NULL</code>.*/public final static int NULL            =   0;/*** The constant in the Java programming language that indicates* that the SQL type is database-specific and* gets mapped to a Java object that can be accessed via* the methods <code>getObject</code> and <code>setObject</code>.*/public final static int OTHER           = 1111;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* <code>JAVA_OBJECT</code>.* @since 1.2*/public final static int JAVA_OBJECT         = 2000;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* <code>DISTINCT</code>.* @since 1.2*/public final static int DISTINCT            = 2001;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* <code>STRUCT</code>.* @since 1.2*/public final static int STRUCT              = 2002;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* <code>ARRAY</code>.* @since 1.2*/public final static int ARRAY               = 2003;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* <code>BLOB</code>.* @since 1.2*/public final static int BLOB                = 2004;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* <code>CLOB</code>.* @since 1.2*/public final static int CLOB                = 2005;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* <code>REF</code>.* @since 1.2*/public final static int REF                 = 2006;/*** The constant in the Java programming language, somtimes referred to* as a type code, that identifies the generic SQL type <code>DATALINK</code>.** @since 1.4*/public final static int DATALINK = 70;/*** The constant in the Java programming language, somtimes referred to* as a type code, that identifies the generic SQL type <code>BOOLEAN</code>.** @since 1.4*/public final static int BOOLEAN = 16;//------------------------- JDBC 4.0 -----------------------------------/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type <code>ROWID</code>** @since 1.6**/public final static int ROWID = -8;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type <code>NCHAR</code>** @since 1.6*/public static final int NCHAR = -15;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type <code>NVARCHAR</code>.** @since 1.6*/public static final int NVARCHAR = -9;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type <code>LONGNVARCHAR</code>.** @since 1.6*/public static final int LONGNVARCHAR = -16;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type <code>NCLOB</code>.** @since 1.6*/public static final int NCLOB = 2011;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type <code>XML</code>.** @since 1.6*/public static final int SQLXML = 2009;//--------------------------JDBC 4.2 -----------------------------/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type {@code REF CURSOR}.** @since 1.8*/public static final int REF_CURSOR = 2012;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* {@code TIME WITH TIMEZONE}.** @since 1.8*/public static final int TIME_WITH_TIMEZONE = 2013;/*** The constant in the Java programming language, sometimes referred to* as a type code, that identifies the generic SQL type* {@code TIMESTAMP WITH TIMEZONE}.** @since 1.8*/public static final int TIMESTAMP_WITH_TIMEZONE = 2014;// Prevent instantiationprivate Types() {}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/619248.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

openssl3.2 - 官方demo学习 - cms - cms_sign2.c

文章目录 openssl3.2 - 官方demo学习 - cms - cms_sign2.c概述笔记END openssl3.2 - 官方demo学习 - cms - cms_sign2.c 概述 用多个证书进行CMS消息联合签名 笔记 /*! * \file cms_sign2.c * \note openssl3.2 - 官方demo学习 - cms - cms_sign2.c 用多个证书进行CMS消息联…

js unshift方法的使用

JavaScript的unshift()方法是数组对象的方法之一&#xff0c;用于在数组的开头插入一个或多个元素&#xff0c;并返回新数组的长度。它接受一个或多个参数&#xff0c;每个参数都将插入到数组的开头。 以下是unshift()方法的基本语法&#xff1a; var newLength array.unshi…

java的是堆内存、参数如何设置?

什么是堆内存&#xff1f;参数如何设置&#xff1f; 堆内存是指由程序代码自由分配的内存&#xff0c;与栈内存作区分。 在 Java 中&#xff0c;堆内存主要用于分配对象的存储空间&#xff0c;只要拿到对象引用&#xff0c;所有线程都可以访问堆内存。 &#xff08;1&#xff0…

HarmonyOS@Observed装饰器和@ObjectLink装饰器:嵌套类对象属性变化

Observed装饰器和ObjectLink装饰器&#xff1a;嵌套类对象属性变化 上文所述的装饰器仅能观察到第一层的变化&#xff0c;但是在实际应用开发中&#xff0c;应用会根据开发需要&#xff0c;封装自己的数据模型。对于多层嵌套的情况&#xff0c;比如二维数组&#xff0c;或者数…

每日算法打卡:蚂蚁感冒 day 13

文章目录 原题链接题目描述输入格式输出格式数据范围输入样例1&#xff1a;输出样例1&#xff1a;输入样例2&#xff1a;输出样例2&#xff1a; 题目分析示例代码 原题链接 1211. 蚂蚁感冒 题目难度&#xff1a;简单 题目来源&#xff1a;第五届蓝桥杯省赛C A/B组 题目描述…

echarts 3D地图

vueecharts 3D地图,可自定义地图背景底图。鼠标放上显示弹窗&#xff0c;弹窗自动切换。 <template><div id"gbznt" class"gbznt" ref"gbznt"><img class"mapBg" src"../../../img/propertyTransaction/echart-bg…

Django教程第2章| Web开发实战 |用户管理模块

前言 从第2章开始&#xff0c;我们正式以实战为核心开发用户管理系统&#xff0c;计划实现效果图所有模块功能。 本章我们将开始实现我们第一个功能模块&#xff1a;用户管理。 技术栈 Boostrap、jQuery、​​​Django 功能模块 模块进度功能点部门管理完成增删改查&…

nodejs+vue+ElementUi音乐分享社交网站77l8j

本文介绍的系统主要分为两个部分&#xff1a;一是前台界面&#xff1a;用户通过注册登录可以实现音乐播放、新闻浏览、留言评论等功能&#xff1b;另一个是后台界面&#xff1a;音乐网站管理员对用户信息进行管理&#xff0c;上传更新音乐资源&#xff0c;发布最新音乐资讯等功…

NUS CS1101S:SICP JavaScript 描述:五、使用寄存器机进行计算

原文&#xff1a;5 Computing with Register Machines 译者&#xff1a;飞龙 协议&#xff1a;CC BY-NC-SA 4.0 我的目标是表明天堂机器不是一种神圣的生命体&#xff0c;而是一种钟表&#xff08;相信钟表有灵魂属性的人将制造者的荣耀归功于作品&#xff09;&#xff0c;因为…

debian12部署Gitea服务之二——部署git-lfs

Debian安装gitlfs: 先更新下软件包版本 sudo apt update 安装 sudo apt install git-lfs 验证是否安装成功 git lfs version cd到Gitea仓库目录下 cd /mnt/HuHDD/Git/Gitea/Repo/hu/testrepo.git 执行lfs的初始化命令 git lfs install客户机Windows端在官网下载并安装Git-Lfs 再…

C++指针与引用的对比

交换a、b值 方法一 使用指针&#xff0c;需在传参时传递地址&#xff0c;并且需新定义两个指针变量分别指向a、b。 void Swap(int* p1, int* p2) {int t;t *p1;*p2 *p1;*p2 t; }//注意两处的*含义不同&#xff0c;第一处*是定义指针变量&#xff0c;*只是起到说明作用 /…

Origin中将 x、y 轴设置为等长度

---------------------------------------------------------------------- 记录一个画图小技巧&#xff1a; 如何在 Origin 中等轴画图 第一步&#xff1a;起初画出来的图如下&#xff0c;y 轴长于 x 轴 第二步&#xff1a;点击画板的空白处&#xff0c;任意一个地方即可 第…

第十六章 i18n国际化

第十六章 i18n国际化 1.什么是i18n国际化2.i18n国际化三要素介绍3.i18n国际化基础示例4.通过请求头实现国际化5.通过语言类型选择实现国际化6.通过JSTL标签库fmt实现国际化 1.什么是i18n国际化 2.i18n国际化三要素介绍 3.i18n国际化基础示例 如果我要准备一个国际化的信息&…

Web3的应用发展及其影响

Web3&#xff0c;又被称为去中心化Web&#xff0c;是互联网发展的一个阶段&#xff0c;其核心特点是数据的去中心化和用户自主权。近年来&#xff0c;随着区块链技术的不断成熟&#xff0c;Web3的应用也得到了广泛的关注和发展。在这篇文章中&#xff0c;我们将深入探讨Web3目前…

猫狗大战(猫狗识别)

1.问题简介 1.1问题描述 在这个问题中&#xff0c;你将面临一个经典的机器学习分类挑战——猫狗大战。你的任务是建立一个分类模型&#xff0c;能够准确地区分图像中是猫还是狗。 1.2预期解决方案 你的目标是通过训练一个机器学习模型&#xff0c;使其在给定一张图像时能够准…

Open3D对产生偏差的点云数据进行校正

由于相机安装问题&#xff0c;导致点云数据两边翘起来&#xff0c;为了计算把翘起来的部分拉平整 import time import open3d as o3d; import numpy as np; import matplotlib.pyplot as plt from scipy.signal import find_peaks import pandas as pdOriginalPly o3d.io.rea…

【leetcode283】移动零

1、题目描述 【题目链接】 给定一个数组 nums&#xff0c;编写一个函数将所有 0 移动到数组的末尾&#xff0c;同时保持非零元素的相对顺序。 请注意 &#xff0c;必须在不复制数组的情况下原地对数组进行操作。 示例 1: 输入: nums [0,1,0,3,12] 输出: [1,3,12,0,0] 示例…

【代码随想录04】24. 两两交换链表中的节点 19. 删除链表的倒数第 N 个结点 面试题 02.07. 链表相交 142. 环形链表 II

24. 两两交换链表中的节点 题目描述 给你一个链表&#xff0c;两两交换其中相邻的节点&#xff0c;并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题&#xff08;即&#xff0c;只能进行节点交换&#xff09;。 做题思路 可以设置虚拟头结点cur和画图…

MySQL 从零开始:05 MySQL 数据类型

文章目录 1、数值类型1.1 整形数值1.2 浮点型数值1.3 布尔值 2、日期和时间类型3、字符串类型3.1 CHAR 和 VARCHAR3.2 BINARY 和 VARBINARY3.3 BLOB 和 TEXT3.4 ENUM 类型3.5 SET 类型 4、空间数据类型5、JSON 数据类型5、JSON 数据类型 前面的讲解中已经接触到了表的创建&…

跟着cherno手搓游戏引擎【5】layer(层)

编写基类层&#xff1a; Layer.h:提供Attach链接、Detach解绑、Update刷新、Event事件、GetName方法 #pragma once #include"YOTO/Core.h" #include"YOTO/Event/Event.h" namespace YOTO {class YOTO_API Layer{public:Layer(const std::string& nam…