摘要:
JDBC获取表的主键案例,创建订单,并根据订单号向订单明细表插入数据sql语句:创建两表create table orders( id number(4) primary key, customer varchar2(20) not null, orderdate date default sysd... 阅读全文
摘要:
DAO事物函数模版1:public void OrderFinsByPage(){ Connection conn = null; PreparedStatement pstmt = null; ResultSet rs = null; ... 阅读全文