登录后没有弹窗广告,广告是为了发展.如果您在未注册情况下浏览书部落弹出了广告,感谢您对书部落运营的支持
游客: 注册 | 登录 | 统计 | 赚部落币! | 论坛规则简介(必看) | 上传书籍必看| C/C++学习小组| | WINDOWS编程学习小组|
= 论坛导航 = 站务交流 · 新闻与评论 · 找书·评书·荐书 人生故事·心得分享 学习经验·答疑解惑 精华
[电子书分享专区] 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
↑请善于搜索-“搜商”是21世纪您成功的关键因素



 
标题: Oracle PLSQL编程,第4版
  本主题由 shubulo 于 2008-8-11 01:20 移动 
blacknife
部落游客
Rank: 1



UID 73516
精华 0
积分 1
帖子 2
威望 1
部落币 60
代码量 0
阅读权限 10
注册 2008-2-27
状态 离线
发表于 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
如果您对本帖内容有任何质疑,或者您在阅读/下载 本帖内容时遇到困难 请在站务管理版里发帖提出。点这里进入反馈
顶部
 



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