摘要: 有一个EmpMapper.java,里面获取全部数据的fetchAll函数是这样写的: @Mapper public interface EmpMapper { List<Emp> fetchAll(); } 而对应的Empmapper.xml会是这样: <mapper namespace="com 阅读全文
posted @ 2022-04-30 19:53 逆火狂飙 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 咱们的MyBatis总是Web程序的一部分,虽说这就是它的用途,但对于搞一些技术验证的小程序来说,Web程序就太臃肿了。 于是我制作了一个最简Mybatis Sample,里面只有一个Mapper,一个XML和一个启动程序,体积仅11K。能访问一张oracle表,取出其中数量和数据。这个程序是基于S 阅读全文
posted @ 2022-04-30 10:39 逆火狂飙 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 有两个表是这样的: create table emp430_1( id number(12), name nvarchar2(20), profile clob, primary key(id) ); create table emp430_2( id number(12), name nvarch 阅读全文
posted @ 2022-04-30 09:33 逆火狂飙 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 有个表是这样的: create table emp430_1( id number(12), name nvarchar2(20), profile clob, primary key(id) ); 其中profile为clob类型,这种类型可以容纳超大文本。 以下是从中连续读取数据的程序: pac 阅读全文
posted @ 2022-04-30 09:31 逆火狂飙 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 有一个表是这样的: create table emp430_1( id number(12), name nvarchar2(20), profile clob, primary key(id) ); 其中profile是clob字段。 往这个字段连续塞入数据的程序如下: package com.h 阅读全文
posted @ 2022-04-30 09:25 逆火狂飙 阅读(971) 评论(0) 推荐(0) 编辑
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东