登录
登录后没有弹窗广告,广告是为了发展.如果您在未注册情况下浏览书部落弹出了广告,感谢您对书部落运营的支持
游客:
注册
|
登录
|
统计
|
赚部落币!
积分转换
|
论坛规则简介(必看)
|
上传书籍必看
|
C/C++学习小组
| |
WINDOWS编程学习小组
|
·
讲述程序员真实的经历
·
讨论 :你励志的名言是什么
·
在线时间可以兑换部落币啦!
·
IT人求职周年记:投过百度 弃过华为
·
如何成为一名销售人员
·
书籍上传必看啊!
·
如何成功通过面试?HR亲身案例分析
·
深圳,请让我活下去!闯荡深圳八年
·
老IT人追忆十五年IT从业经历
·
JAVA编程思想-伟大的著作
·
Java学习之路-经验之谈
·
ThinkingC++ OR C++ Primer?
·
胡侃理论计算机科学的学习
·
VC++学习方法及书籍推荐
·
我的IT人生 by 空明主义
= 论坛导航 =
站务交流
·
新闻与评论
·
找书·评书·荐书
人生故事·心得分享
学习经验·答疑解惑
精华
[
电子书分享专区
]
WEB开发与程序设计
·
C/C++电子书
·
JAVA电子书
·
.NET相关
·
汇编语言
·
PHP电子书
·
ASP电子书
·
JSP电子书
·
嵌入式开发
·
游戏编程
黑客|病毒|破解
·
Ruby·Ajax·XML·CSS·Python等脚本语言
·
操作系统
·
LINUX电子书
·
UNINX电子书
·
WINDOWS电子书
·
数据库
·
Oracle
·
MYSQL
·
SQL Server
·
等....
注:书籍分享区仅限书籍分享,下面有代码分享区,希望大家注意区分
[
程序源代码分享区
]
Windows程序(C/C++/VC++)
·
界面编程
·
桌面应用
·
文件操作
·
shell编程
·
钩子(HOOK)
·
Win32API
·
COM编程
·
进程与线程
·
驱动编程
·
WinSock
·
LINUX程序代码
·
JAVA程序
·
.NET编程
·
书籍源码
·
等....
[
技术文摘分享区
]
文摘分享区旨在搜集网上的专业文献,希望你也能来添砖加瓦,添加文章有部落币奖励
程序设计与WEB开发电子书目录
◇◆□
专题推荐:JAVA电子书下载
◇◆□
C程序设计之四书五经_电子书下载
◇◆□
C++学习推荐书目
◇◆□
C#经典书籍
◇◆□
JAVA编程思想专题
◇◆□
C++ Primer
输入您的搜索字词
提交搜索表单
Web
shubulo.com
↑请善于搜索-“搜商”是21世纪您成功的关键因素
书部落-计算机PDF电子书之家
»
数据库
»
Oracle
» Oracle PLSQL编程,第4版
‹‹ 上一主题
|
下一主题 ››
投票
交易
悬赏
活动
打印
|
推荐
|
订阅
|
收藏
标题: Oracle PLSQL编程,第4版
本主题由 shubulo 于 2008-8-11 01:20 移动
blacknife
部落游客
UID 73516
精华 0
积分 1
帖子 2
威望 1
部落币 60
代码量 0
阅读权限 10
注册 2008-2-27
状态 离线
#1
发表于 2008-6-20 15:40
资料
短消息
Oracle PLSQL编程,第4版
Oracle PL/SQL Programming
By Steven Feuerstein, Bill Pribyl
...............................................
Publisher: O'Reilly
Pub Date: August 2005
ISBN: 0-596-00977-1
Pages: 1198
Table of Contents | Index
Copyright
Dedication
Preface
Objectives of This Book
Structure of This Book
Conventions Used in This Book
Which Platform or Version?
About the Code
Safari Enabled
Comments and Questions
Acknowledgments
Part I: Programming in PL/SQL
Chapter 1. Introduction to PL/SQL
Section 1.1. What Is PL/SQL?
Section 1.2. The Origins of PL/SQL
Section 1.3. So This Is PL/SQL
Section 1.4. About PL/SQL Versions
Section 1.5. Resources for PL/SQL Developers
Section 1.6. Some Words of Advice
Chapter 2. Creating and Running PL/SQL Code
Section 2.1. SQL*Plus
Section 2.2. Performing Essential PL/SQL Tasks
Section 2.3. Calling PL/SQL from Other Languages
Chapter 3. Language Fundamentals
Section 3.1. PL/SQL Block Structure
Section 3.2. The PL/SQL Character Set
Section 3.3. Identifiers
Section 3.4. Literals
Section 3.5. The Semicolon Delimiter
Section 3.6. Comments
Section 3.7. The PRAGMA Keyword
Section 3.8. Labels
Part II: PL/SQL Program Structure
Chapter 4. Conditional and Sequential Control
Section 4.1. IF Statements
Section 4.2. CASE Statements and Expressions
Section 4.3. The GOTO Statement
Section 4.4. The NULL Statement
Chapter 5. Iterative Processing with Loops
Section 5.1. Loop Basics
Section 5.2. The Simple Loop
Section 5.3. The WHILE Loop
Section 5.4. The Numeric FOR Loop
Section 5.5. The Cursor FOR Loop
Section 5.6. Loop Labels
Section 5.7. Tips for Iterative Processing
Chapter 6. Exception Handlers
Section 6.1. Exception-Handling Concepts and Terminology
Section 6.2. Defining Exceptions
Section 6.3. Raising Exceptions
Section 6.4. Handling Exceptions
Section 6.5. Building an Effective Error Management Architecture
Section 6.6. Making the Most of PL/SQL Error Management
Part III: PL/SQL Program Data
Chapter 7. Working with Program Data
Section 7.1. Naming Your Program Data
Section 7.2. Overview of PL/SQL Datatypes
Section 7.3. Declaring Program Data
Section 7.4. Programmer-Defined Subtypes
Section 7.5. Conversion Between Datatypes
Chapter 8. Strings
Section 8.1. String Datatypes
Section 8.2. Working with Strings
Section 8.3. String Function Quick Reference
Chapter 9. Numbers
Section 9.1. Numeric Datatypes
Section 9.2. Number Conversions
Section 9.3. Numeric Functions
Chapter 10. Dates and Timestamps
Section 10.1. Datetime Datatypes
Section 10.2. Getting the Date and Time
Section 10.3. Interval Datatypes
Section 10.4. Datetime Conversions
Section 10.5. Date and Timestamp Literals
Section 10.6. Interval Conversions
Section 10.7. Interval Literals
Section 10.8. CAST and EXTRACT
Section 10.9. Datetime Arithmetic
Section 10.10. Date/Time Functions
Chapter 11. Records
Section 11.1. Records in PL/SQL
Chapter 12. Collections
Section 12.1. Collections Overview
Section 12.2. Collection Methods (Built-Ins)
Section 12.3. Working with Collections
Section 12.4. Nested Table Multiset Operations
Section 12.5. Maintaining Schema-Level Collections
Chapter 13. Miscellaneous Datatypes
Section 13.1. The BOOLEAN Datatype
Section 13.2. The RAW Datatype
Section 13.3. The UROWID and ROWID Datatypes
Section 13.4. The LOB Datatypes
Section 13.5. Working with LOBs
Section 13.6. Predefined Object Types
Part IV: SQL in PL/SQL
Chapter 14. DML and Transaction Management
Section 14.1. DML in PL/SQL
Section 14.2. Bulk DML with the FORALL Statement
Section 14.3. Transaction Management
Section 14.4. Autonomous Transactions
Chapter 15. Data Retrieval
Section 15.1. Cursor Basics
Section 15.2. Working with Implicit Cursors
Section 15.3. Working with Explicit Cursors
Section 15.4. BULK COLLECT
Section 15.5. SELECT ... FOR UPDATE
Section 15.6. Cursor Variables and REF CURSORs
Section 15.7. Cursor Expressions
Chapter 16. Dynamic SQL and Dynamic PL/SQL
Section 16.1. NDS Statements
Section 16.2. Binding Variables
Section 16.3. Working with Objects and Collections
Section 16.4. Dynamic PL/SQL
Section 16.5. Recommendations for NDS
Section 16.6. When to Use DBMS_SQL
Section 16.7. NDS Utility Package
Part V: PL/SQL Application Construction
Chapter 17. Procedures, Functions, and Parameters
Section 17.1. Modular Code
Section 17.2. Procedures
Section 17.3. Functions
Section 17.4. Parameters
Section 17.5. Local Modules
Section 17.6. Module Overloading
Section 17.7. Forward Declarations
Section 17.8. Advanced Topics
Section 17.9. Go Forth and Modularize!
Chapter 18. Packages
Section 18.1. Why Packages?
Section 18.2. Rules for Building Packages
Section 18.3. Rules for Calling Packaged Elements
Section 18.4. Working with Package Data
Section 18.5. When to Use Packages
Section 18.6. Packages and Object Types
Chapter 19. Triggers
Section 19.1. DML Triggers
Section 19.2. DDL Triggers
Section 19.3. Database Event Triggers
Section 19.4. INSTEAD OF Triggers
Section 19.5. AFTER SUSPEND Triggers
Section 19.6. Maintaining Triggers
Chapter 20. Managing PL/SQL Code
Section 20.1. Managing Code in the Database
Section 20.2. Using Native Compilation
Section 20.3. Using the Optimizing Compiler and Compile-Time Warnings
Section 20.4. Conditional Compilation
Section 20.5. Testing PL/SQL Programs
Section 20.6. Debugging PL/SQL Programs
Section 20.7. Tuning PL/SQL Programs
Section 20.8. Protecting Stored Code
Chapter 21. I/O and PL/SQL
Section 21.1. Displaying Information
Section 21.2. Reading and Writing Files
Section 21.3. Sending Email
Section 21.4. Working with Web-Based Data (HTTP)
Section 21.5. Other Types of I/O Available in PL/SQL
Part VI: Advanced PL/SQL Topics
Chapter 22. Application Security and PL/SQL
Section 22.1. Security Overview
Section 22.2. Encryption
Section 22.3. Row-Level Security
Section 22.4. Application Contexts
Section 22.5. Fine-Grained Auditing
Chapter 23. Inside PL/SQL
Section 23.1. Looking Under the Hood
Section 23.2. PL/SQL's Optimizing Compiler
Section 23.3. Dependency Management
Section 23.4. Execution Authority Models
Section 23.5. PL/SQL and Oracle Memory
Section 23.6. Server-Side PL/SQL Processing: Reprise
Section 23.7. What You Need to Know
Chapter 24. Globalization and Localization in PL/SQL
Section 24.1. Overview and Terminology
Section 24.2. Unicode Primer
Section 24.3. Character Semantics
Section 24.4. String Sort Order
Section 24.5. Multilingual Information Retrieval
Section 24.6. Date/Time
Section 24.7. Currency Conversion
Section 24.8. Globalization Development Kit for PL/SQL
Chapter 25. Object-Oriented Aspects of PL/SQL
Section 25.1. Introduction to Oracle's Object Features
Section 25.2. An Extended Example
Section 25.3. Object Views
Section 25.4. Maintaining Object Types and Object Views
Section 25.5. Pontifications
Chapter 26. Calling Java from PL/SQL
Section 26.1. Oracle and Java
Section 26.2. Getting Ready to Use Java in Oracle
Section 26.3. A Simple Demonstration
Section 26.4. Using loadjava
Section 26.5. Using dropjava
Section 26.6. Managing Java in the Database
Section 26.7. Using DBMS_JAVA
Section 26.8. Publishing and Using Java in PL/SQL
Chapter 27. External Procedures
Section 27.1. Introduction to External Procedures
Section 27.2. The Oracle Net Configuration
Section 27.3. Setting Up Multithreaded Mode
Section 27.4. Creating an Oracle Library
Section 27.5. Writing the Call Specification
Section 27.6. Raising an Exception from the Called C Program
Section 27.7. Nondefault Agents
Section 27.8. Maintaining External Procedures
Part VII: Appendixes
Appendix A. Regular Expression Metacharacters and Function Parameters
Section A.1. Metacharacters
Section A.2. Function Parameters
Appendix B. Number Format Models
Appendix C. Date Format Models
Colophon
About the Authors
Colophon
Index
附件
: [Oracle PLSQL编程,第4版]
OReilly.Oracle.PL.SQL.Programming.4th.Edition.Aug.2005.chm
(2008-6-20 15:40, 3.56 M)
该附件被下载次数 168
如果您对本帖内容有任何质疑,或者您在阅读/下载 本帖内容时遇到困难 请在站务管理版里发帖提出。点这里进入反馈
投票
交易
悬赏
活动
书部落-计算机PDF电子书之家
社区管理中心
> 站务管理
交流地带
> IT八卦·焦点网谈·七嘴八舌
> 求书专版
> IT人生·励志故事·心得分享
> 学习经验·技术心得·答疑解惑
> C/C++语言学习小组
> Windows编程学习组
> 嵌入式开发学习组
计算机专业电子书分享&下载
> 程序设计与WEB开发
> C\C++
> Java
> .NET相关
> 汇编语言
> Delphi
> Visual Basic
> PHP
> ASP
> JSP
> CGI/PERL
> 嵌入式开发
> 软件调试|加解密
> 游戏编程
> 脚本编程与WEB开发[Html/CSS/XML/Ajax等]
> 操作系统
> Windows
> Linux
> UNIX
> 其他
> 数据库
> Access
> MySQL
> SQL Server
> Oracle
> FoxBase/Pro
> PowerBuilder
> 其它
> 图形图像与多媒体
> Fireworks
> Photoshop
> CorelDraw
> 3D制作类
> Flash
> 其它
> 网络通信与网络安全技术
> TCP/IP
> 网络编程|组网|配置|
> 网络安全|黑客相关
> 网络基础理论
> WEB服务器
> 软件工程学
> 计算机考试认证
> 微软认证
> 思科认证
> 国家计算机等级考试
> 自学考试
> 软件水平考试(软考)
> 其它
> 计算机基础理论
> 办公自动化
> 硬件DIY|故障维修
> 其他计算机相关图书
> 其他类图书分享
程序源代码分享&下载
> Windows编程(C/C++/VC++)
> 界面编程
> 桌面应用
> 文件操作
> shell编程
> 钩子(HOOK)
> Win32API
> 多任务(进程与线程)
> COM编程
> 驱动编程
> WinSock
> Linux/Unix编程
> JAVA编程
> J2ME
> .NET编程
> Delphi & Kylix
> Delphi控件
> 相关开发工具
> 汇编语言程序
> 数据库编程
> SQL Server
> Oracle
> Sybase
> Access
> MySQL
> 其它数据库
> 网络编程
> WinSock
> Internet与WEB服务
> 通信协议(TCP/IP协议栈)
> P2P编程
> 搜索引擎
> 网络安全
> 嵌入式/单片机编程
> 嵌入式Linux
> 微处理器开发
> 单片机开发
> VxWorks
> uCOS
> DSP编程
> Windows CE
> VHDL编程
> 加密解密
> 图形图象与多媒体
> 绘图程序
> DirectX
> OpenGL
> 视频技术
> 音频技术
> 图形算法
> GIS编程
> 反病毒编程
> 通讯/手机编程
> J2ME
> 书籍源码
计算机专业技术文摘分享&阅读
> 程序设计与WEB开发
> C语言
> Visual C++/C++
> Java
> C#
> 汇编语言
> Delphi
> Visual Basic
> PHP
> ASP
> JSP
> Html/CSS教程
> CGI/PERL
> Dreamweaver/Frontpage
> XML
> Javascript
> Vbscript
> 操作系统
> DOS
> 视窗系列Windows2000
> 视窗系列WindowsXP
> 视窗系列Windows2003
> 苹果OS
> 伯克利系统freebsd
> SCO Unix
> Solaris
> Aix
> Linux
> 数据库
> MS Access
> MSSQL
> MySQL
> IBM-DB2
> ORACLE
> SYBASE
> FoxPro
> 图形图像与多媒体
> 网络通信与网络安全技术
> TCP/IP协议
> IPv6协议
> 网络通讯标准(RFC)
> 路由器
> 网际操作系统(IOS)
> 路由信息协议(RIP)
> OSPF路由协议
> MPLS技术
> 虚拟专用网(VPN)
> 虚拟局域网(VLAN)
> 集线器
> 交换机
> 以太网
> 无线网络
> 无盘网络
> 宽带接入
> 光纤通讯
> 网络综合布线
> 终端设备
> 系统集成
> 防火墙
> 攻击监测
> 邮件服务
> 网站服务
> FTP服务
> 数据库服务
> 域名解析服务
> 多媒体服务
> 办公自动化
> 硬件与维护
> 计算机考试认证
> 微软认证
> 思科认证
> 国家计算机等级考试
> 自学考试
> 软件水平考试
> 其它
计算机电子书下载PDF
Powered by
Discuz!
5.0.0
© 2001-2006
著作权保护声明
|
网站法律顾问:ItLaw-庄毅雄律师
|
Processed in 0.108146 second(s), 8 queries , Gzip enabled 1024*768
当前时区 GMT+8, 现在时间是 2008-12-4 13:18
清除 Cookies
-
联系我们
-
书部落-计算机编程图书资料分享
-
Archiver
控制面板首页
编辑个人资料
积分交易
公众用户组
好友列表
基本概况
论坛排行
主题排行
发帖排行
积分排行
在线时间
管理团队