日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

前言

JDBC訪問Postgresql的jsonb類型字段當然可以使用Postgresql jdbc驅動中提供的PGobject,但是這樣在需要兼容多種數據庫的系統開發中顯得不那么通用,需要特殊處理。本文介紹一種更通用的方式。

JDBC URL中添加參數

在Postgresql的jdbc url中可以添加一個參數,如下:

jdbc:postgresql://xxx.xxx.xxx:5432/postgres?stringtype=unspecified

官方對stringtype參數的解釋是:

stringtype : String

Specify the type to use when binding PreparedStatement parameters set via setString(). If stringtype is set to VARCHAR (the default), such parameters will be sent to the server as varchar parameters. If stringtype is set to unspecified, parameters will be sent to the server as untyped values, and the server will attempt to infer an Appropriate type. This is useful if you have an existing application that uses setString() to set parameters that are actually some other type, such as integers, and you are unable to change the application to use an appropriate method such as setInt().

因此當stringtype=unspecified 時,statement.setString()方法的參數將以未知的類型發送給pg數據庫,由數據庫根據表中字段的類型進行推定和自動轉換。也就是說我們可以以字符串形式給postgresql數據庫中各種類型的數據進行賦值,當然也可以支持jsonb類型。

JDBC代碼示例

建測試表:

create table t_test( name varchar(20) primary key, props jsonb);

插入數據:

Class.forName("org.postgresql.Driver");

Connection con = null;

try {

String url="jdbc:postgresql://xxxx.xxxx.xxxx:5432/postgres?stringtype=unspecified";

con = DriverManager.getConnection(url, "username", "password");

con.setAutoCommit(false);

 

String sql= "insert into t_test(name, props) values(?,?)";

PreparedStatement statement = con.prepareStatement();

statement.setString(1, "zhangsan");

statement.setString(2, "{"age":23, "email":"zhangsan@xxx.com"}");

statement.executeUpdate();

con.commit();

} catch (Exception ex) {

ex.printStackTrace();

con.rollback();

} finally {

if (con != null) {

con.close();

}

}

分享到:
標簽:JDBC
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定