概述
GBase 8s数据库创建列时支持使用list关键字定义集合类型,针对这种类型怎么插入和查询数据呢?下面将通过使用jdbc采用两种方式讲解如何操作该类型数据。
首先做好准备工作,定义包含该类型的表结构如下:
create row type myrowtype(i int);
create table testlistrowtype(col1 list(myrowtype not null));
方式1:采用java.util.ArrayList参数方式
1)首先创建java类与自定义row type的映射关系,内容如下:
import java.sql.SQLData; import java.sql.SQLException; import
java.sql.SQLInput; import java.sql.SQLOutput;public class r1_t implements SQLData {
int int_col;
String sqlType=“r1_t”;
public r1_t(){} public r1_t(int i){
int_col=i;
}
@Override
public String getSQLTypeName() throws SQLException {
return sqlType;
}
@Override
public void readSQL(SQLInput stream, String typeName) throws SQLException {
int_col = stream.readInt();
}
@Override
public void writeSQL(SQLOutput stream) throws SQLException {
stream.writeInt(int_col);
}
2)插入数据示例代码:
Map map = conn.getTypeMap(); map.put(“r1_t”,Class.forName(“r1_t”));
ArrayList<r1_t> list = new ArrayList<>(); r1_t col = new r1_t(1);
list.add(col); col = new r1_t(2); list.add(col); PreparedStatement pst
= conn.prepareStatement(“insert into testlistrowtype values(?)”); pst.setObject(1,list); pst.executeUpdate(); pst.close(); conn.close();
3)读取示例代码:
Map map = conn.getTypeMap(); map.put(“r1_t”,Class.forName(“r1_t”));
PreparedStatement pst = conn.prepareStatement(“slect * from
testlistrowtype”); ResultSet rs = pst.executeQuery(); while
(rs.next()){
ArrayList<r1_t> list = (ArrayList)rs.getObject(1);
if(list!=null){
for(r1_t col:list){
System.out.println(col.int_col);
}
} }
方式2:采用字符串方式写入数据
这种方式比较简单,如果list中的类型不是特别复杂,建议采用这种方式插入数据,示例如下
插入数据示例代码:
PreparedStatement pst = conn.prepareStatement(“insert into
testlistrowtype values(?)”); String s = new
String(“set{row(9),row(8)}”); pst.setString(1,s); pst.executeUpdate();
s = new String(“set{row(7),row(6)}”); pst.setString(1,s);
pst.executeUpdate();
至于读取数据仍然采用方式1方式。
以上为两种方式通过jdbc操作array类型列的方式。
最后
以上就是忧郁龙猫为你收集整理的如何通过jdbc实现Array类型数据的插入与查询的全部内容,希望文章能够帮你解决如何通过jdbc实现Array类型数据的插入与查询所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复