SQLJ开发对象及参照类型演示程序.doc

  1. 1、本文档共9页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
SQLJ开发对象和参照类型演示程序   本文将通过一个完整的例子说明开发对象和参照类型应用程序的方法。具体步骤如下: 1. 创建对象类型、对象表,并插入数据 首先在SQL Plus 中执行以下代码(保存在exam10.sql文件中): drop table article_tab; drop type article_typ; drop table auths_tab; drop type auths_typ; drop type address; create or replace type address as object ( num number(6), street char(50), city char(30), province char(20), zipcode char(6) ); / create or replace type auths_typ as object ( author_code char(6), name char(10), salary number(10,2), addr address ); / create table auths_tab of auths_typ; create or replace type article_typ as object ( article_code char(6), title char(120), auths ref auths_typ ); / create table article_tab of article_typ; insert into auths_tab values (auths_typ(A00001,王达琳,120, address(15,海淀路, ,北京市,100080))); insert into auths_tab values (auths_typ(A00002,李井元,110.5, address(9,先烈路,广州市,广东省,510000))); insert into auths_tab values (auths_typ(A00003,赵封昭,135, address(98,南京路,,上海市,200000))); insert into article_tab select CS1,Intermet 将成为多语系网,ref(a) from auths_tab a where author_code=A00001; insert into article_tab select CS2,PowerPC AS 芯片将用于RS/6000系统,ref(a) from auths_tab a where author_code=A00002; insert into article_tab select CS3,VESA标准获得通过,ref(a) from auths_tab a where author_code=A00003; insert into article_tab select CS4,CA推出两种网络新软件,ref(a) from auths_tab a where author_code=A00001; commit; 2. 将对象类型转换为.java文件 jpub -user=aca/xtgroup -sql=address,auths_typ,article_typ -url=jdbc:oracle:oci8:@orcl -case=same 3. 开发SQLJ应用程序 1) 程序目的: 本程序为读者提供了开发SQLJ对象类型应用的方法。 2) 程序功能: 本程序实现更新、检索对象表auths_tab的对象类型数据,并实现更新、检索对象表article_tab的参照类型数据。 3) 编程步骤以及程序流程图: 导入类; 调用方法connect()建立数据库连接; 调用方法selectObject(),用于检索auths_tab表中的对象类型数据; 调用方法insertObject(),用于插入对象类型数据到auths_tab表; 调用方法updateRef(),用于更新对象表article_tab中的参照类型数据; 调用方法selectRef(),用于检索对象表article_tab的参照类型数据。 对应的程序流程图如下: 4) 程序清单: /* * 本例用于帮助读者掌握开发SQLJ对象类型应用程序的方法 */ /* 导入类 */ import java.sql.SQLException; import java.math.BigDecimal; import oracle.sqlj.runtime.Oracle; /* 声明迭代类 */ #sql iterator Auths_

文档评论(0)

xuefei111 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档