资源简介
Oracle PL SQL 程序设计第五版(中文)
包含内容:
1。上册,1 - 16章
2。下册,17 - 26章
3。源码
4。另外还有27和28两章的英文版。
注意:因为上传权限问题,分成了三部分,这是第三部分。请全部下载后再解压。.

代码片段和文件信息
import java.sql.*;
public class book
{
public static void main(String[] args) throws SQLException
{
// initialize the driver and try to make a connection
DriverManager.registerDriver (new oracle.jdbc.driver.OracleDriver ( ));
Connection conn =
DriverManager.getConnection(“jdbc:oracle:thin:@localhost:1521:o92“
“scott“ “tiger“);
// prepareCall uses ANSI92 “call“ syntax
CallableStatement cstmt = conn.prepareCall(“{? = call booktitle(?)}“);
// get those bind variables and parameters set up
cstmt.registerOutParameter(1 Types.VARCHAR);
cstmt.setString(2 “0-596-00180-0“);
// now we can do it get it close it and print it
cstmt.executeUpdate( );
String booktitle = cstmt.getString(1);
conn.close( );
System.out.println(booktitle);
}
}
/*======================================================================
| Supplement to the fifth edition of Oracle PL/SQL Programming by Steven
| Feuerstein with Bill Pribyl Copyright (c) 1997-2009 O‘Reilly Media Inc.
| To submit corrections or find more code samples visit
| http://oreilly.com/catalog/9780596514464/
*/
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 69572021 2012-10-24 21:35 Oracle PL SQL 程序设计 下 第五版.pdf
文件 1540 2009-09-22 13:30 OPP5.WEB.CODE\#README.txt
文件 1502 2009-09-17 19:36 OPP5.WEB.CODE\10g_authors.pkg
文件 1059 2009-09-17 19:43 OPP5.WEB.CODE\10g_coll_unordered.sql
文件 992 2009-09-17 19:38 OPP5.WEB.CODE\10g_compare.sql
文件 2391 2009-09-17 19:38 OPP5.WEB.CODE\10g_compare_old.sql
文件 385 2009-09-17 19:38 OPP5.WEB.CODE\10g_compwarn.sql
文件 1519 2009-09-17 19:39 OPP5.WEB.CODE\10g_favorites.pkg
文件 609 2009-09-17 19:39 OPP5.WEB.CODE\10g_fav_union1.sql
文件 607 2009-09-17 19:39 OPP5.WEB.CODE\10g_fav_union2.sql
文件 626 2009-09-17 19:39 OPP5.WEB.CODE\10g_fav_union3.sql
文件 4064 2009-09-17 19:39 OPP5.WEB.CODE\10g_forall.sql
文件 1152 2009-09-17 19:39 OPP5.WEB.CODE\10g_indices_of.sql
文件 2376 2009-09-17 19:40 OPP5.WEB.CODE\10g_optimize_cfl.sql
文件 918 2009-09-17 19:40 OPP5.WEB.CODE\10g_quotes.sql
文件 1504 2009-09-17 19:40 OPP5.WEB.CODE\10g_set.sql
文件 1702 2009-09-17 19:41 OPP5.WEB.CODE\10g_setops.sql
文件 405 2009-09-17 19:41 OPP5.WEB.CODE\10g_strings_nt.sql
文件 1188 2009-09-17 19:41 OPP5.WEB.CODE\10g_submultiset.sql
文件 1750 2009-09-17 19:41 OPP5.WEB.CODE\10g_tab_compare_with_coll.sql
文件 1339 2009-09-17 19:41 OPP5.WEB.CODE\10g_union.sql
文件 1097 2009-09-17 19:41 OPP5.WEB.CODE\10g_values_of.sql
文件 5257 2009-09-17 21:27 OPP5.WEB.CODE\11gR2_frc_no_relies_on.sql
文件 1362 2009-09-17 19:42 OPP5.WEB.CODE\11g_access_denied_1.sql
文件 6617 2009-09-17 19:42 OPP5.WEB.CODE\11g_compound_mutating.sql
文件 762 2009-09-17 19:42 OPP5.WEB.CODE\11g_effective_user_id.sql
文件 3647 2009-09-17 19:42 OPP5.WEB.CODE\11g_emplu.pkg
文件 1283 2009-09-17 19:43 OPP5.WEB.CODE\11g_emplu.tst
文件 1616 2009-09-17 21:22 OPP5.WEB.CODE\11g_emplu_compare.sp
文件 3539 2009-09-17 21:23 OPP5.WEB.CODE\11g_fgd.sql
............此处省略547个文件信息
相关资源
- 实现Oracle数据库每天异地自动备份
- windows下oracle数据库备份压缩删除历史
- 用Linux命令完成Oracle自动物理备份
- 破解oracle密码的工具orabf-v0[1].7.6.zip
-
Oracle向Syba
se ASE迁移指南 - 用NetBackup恢复Oracle数据库到异机
- 认识NBU备份Oracle时Code 29错误的解答
- Backup_Exec_ORACLE_RAC_数据库备份恢复指导
- 通过Backup Exec实施Oracle来灾难恢复
- 通过Backup Exec实施Oracle灾难恢复
- Oracle中空间管理对系统性能的影响
- Oracle 10g数据库的安全性和身份管理
- Oracle RAC恢复到单机方案-仅有一个全备
- oracle数据库比对工具
- Oracle非常好的入门、深入PPT
- Oracle数据库基础知识(华为内部培训
- 非常好的Oracle课件
- Oracle产品助力青岛啤酒发展
- Sun/Oracle9i RAC方案在英国BACS公司的应用
- Oracle Linux 6.8 x86_64
- oracle 到mysql转换工具
- 利用Oracle复制技术的灾备解决方案
- Oracle中的优化器如何进行评估优化
- 如何选择Oracle优化器使你事半功倍
- Oracle中文API
- oraclesql高级编程 随书脚本
- oci.dll of Oracle11g
- oracle11g 版本 11.2.0.1.0 帮助文档
- oracle 11g oci.dll for Navicate
- oracle 11g localhost可以访问,ip不能访问
评论
共有 条评论