舉報

會員
PostgreSQL Server Programming(Second Edition)
最新章節:
Index
ThisbookisformoderatetoadvancedPostgreSQLdatabaseprofessionalswhowishtoextendPostgreSQL,utilizingthemostupdatedfeaturesofPostgreSQL9.4.Forabetterunderstandingofthisbook,familiaritywithwritingSQL,abasicideaofquerytuning,andsomecodingexperienceinyourpreferredlanguageisexpected.
目錄(136章)
倒序
- coverpage
- PostgreSQL Server Programming Second Edition
- Credits
- About the Authors
- About the Reviewers
- www.PacktPub.com
- Support files eBooks discount offers and more
- Preface
- What this book covers
- What you need for this book
- Who this book is for
- Conventions
- Reader feedback
- Customer support
- Chapter 1. What Is a PostgreSQL Server?
- Why program in the server?
- About this book's code examples
- Moving beyond simple functions
- Managing related data with triggers
- Auditing changes
- Data cleaning
- Custom sort orders
- Programming best practices
- Caching
- Wrapping up – why program in the server?
- Summary
- Chapter 2. Server Programming Environments
- Cost of acquisition
- Availability of developers
- Licensing
- Predictability
- Community
- Procedural languages
- Summary
- Chapter 3. Your First PL/pgSQL Function
- Why PL/pgSQL?
- The structure of a PL/pgSQL function
- Conditional expressions
- Returning a record
- Acting on the function's results
- Summary
- Chapter 4. Returning Structured Data
- Sets and arrays
- Returning sets
- Using a set returning function
- Functions based on views
- OUT parameters and records
- A summary of the RETURN SETOF variants
- Returning cursors
- Other ways to work with structured data
- Summary
- Chapter 5. PL/pgSQL Trigger Functions
- Creating the trigger function
- Working on a simple "Hey I'm called" trigger
- The audit trigger
- Disallowing DELETE
- Disallowing TRUNCATE
- Modifying the NEW record
- The immutable fields trigger
- Controlling when a trigger is called
- Visibility
- Variables passed to the PL/pgSQL TRIGGER function
- Summary
- Chapter 6. PostgreSQL Event Triggers
- Use cases for creating event triggers
- Creating event triggers
- Creating an audit trail
- Preventing schema changes
- A roadmap of event triggers
- Summary
- Chapter 7. Debugging PL/pgSQL
- Manual debugging with RAISE NOTICE
- Visual debugging
- Summary
- Chapter 8. Using Unrestricted Languages
- Are untrusted languages inferior to trusted ones?
- Can you use untrusted languages for important functions?
- Will untrusted languages corrupt the database?
- Why untrusted?
- Quick introduction to PL/Python
- Thinking out of the "SQL database server" box
- Summary
- Chapter 9. Writing Advanced Functions in C
- The simplest C function – return (a + b)
- Adding functionality to add(int int)
- Basic guidelines for writing C code
- Error reporting from C functions
- Running queries and calling PostgreSQL functions
- Handling records as arguments or returned values
- Fast capturing of database changes
- Doing something at commit/rollback
- Synchronizing between backends
- Writing functions in C++
- Additional resources for C
- Summary
- Chapter 10. Scaling Your Database with PL/Proxy
- Creating a simple single-server chat
- Dealing with success – splitting tables over multiple databases
- Connection Pooling
- Summary
- Chapter 11. PL/Perl – Perl Procedural Language
- When to use PL/Perl
- Installing PL/Perl
- A simple PL/Perl function
- Passing and returning non-scalar types
- Writing PL/Perl triggers
- Untrusted Perl
- Summary
- Chapter 12. PL/Tcl – Tcl Procedural Language
- Installing PL/Tcl
- A simple PL/Tcl function
- Passing and returning arrays
- Passing composite-type arguments
- Accessing databases
- Writing PL/Tcl triggers
- Untrusted Tcl
- Summary
- Chapter 13. Publishing Your Code as PostgreSQL Extensions
- When to create an extension
- Unpackaged extensions
- Extension versions
- The .control file
- Building an extension
- Installing an extension
- Viewing extensions
- Publishing your extension
- Installing an extension from PGXN
- Summary
- Chapter 14. PostgreSQL as an Extensible RDBMS
- What can't be extended?
- Creating a new operator
- Creating index access methods
- Creating user-defined aggregates
- Using foreign data wrappers
- Summary
- Index 更新時間:2021-07-23 20:37:08
推薦閱讀
- Advanced Machine Learning with Python
- GAE編程指南
- Python for Secret Agents:Volume II
- 人臉識別原理及算法:動態人臉識別系統研究
- Java設計模式及實踐
- 基于Swift語言的iOS App 商業實戰教程
- Learn React with TypeScript 3
- Java編程技術與項目實戰(第2版)
- AIRIOT物聯網平臺開發框架應用與實戰
- 動手學數據結構與算法
- Mastering ArcGIS Enterprise Administration
- FFmpeg開發實戰:從零基礎到短視頻上線
- Qt 4開發實踐
- 青少年學Python(第2冊)
- 高效使用Greenplum:入門、進階與數據中臺
- OpenCV 3.0 Computer Vision with Java
- 百萬在線:大型游戲服務端開發
- Visual Basic語言程序設計上機指導與練習(第3版)
- Performance Testing with JMeter 3(Third Edition)
- Magento 2 -Build World-Class online stores
- Java核心技術卷I基礎知識(原書第9版)
- INSTANT Jsoup How-to
- Visual C#網絡編程
- Building Probabilistic Graphical Models with Python
- 大學計算機基礎教程
- JavaScript忍者秘籍(第2版)
- Go語言從入門到項目實踐(超值版)
- Windows PowerShell for .NET Developers(Second Edition)
- WCF Multi-layer Services Development with Entity Framework(Fourth Edition)
- Python數據處理:如何又快又好