首頁 > 計(jì)算機(jī)網(wǎng)絡(luò) >
編程語言與程序設(shè)計(jì)
> PostgreSQL Server Programming(Second Edition)最新章節(jié)目錄
舉報(bào)

會(huì)員
PostgreSQL Server Programming(Second Edition)
最新章節(jié):
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 更新時(shí)間:2021-07-23 20:37:08
推薦閱讀
- Learning C# by Developing Games with Unity 2020
- Visual FoxPro程序設(shè)計(jì)教程(第3版)
- 精通搜索分析
- Elastic Stack應(yīng)用寶典
- PHP+MySQL+Dreamweaver動(dòng)態(tài)網(wǎng)站開發(fā)實(shí)例教程
- ASP.NET 3.5程序設(shè)計(jì)與項(xiàng)目實(shí)踐
- 低代碼平臺(tái)開發(fā)實(shí)踐:基于React
- 愛上micro:bit
- 軟件測試綜合技術(shù)
- Python Machine Learning Blueprints:Intuitive data projects you can relate to
- Java程序設(shè)計(jì)實(shí)用教程(第2版)
- Java程序設(shè)計(jì)入門(第2版)
- JavaScript Mobile Application Development
- 大話程序員:從入門到優(yōu)秀全攻略
- MATLAB計(jì)算機(jī)視覺實(shí)戰(zhàn)
- R語言編程基礎(chǔ)
- Python機(jī)器學(xué)習(xí)技術(shù):模型關(guān)系管理
- Python語言基礎(chǔ)
- 零基礎(chǔ)Python學(xué)習(xí)筆記
- 大學(xué)計(jì)算機(jī)應(yīng)用基礎(chǔ)教程(第三版)
- Learning Angular for .NET Developers
- Machine Learning with TensorFlow 1.x
- Learning Dart(Second Edition)
- 名師講壇:Java開發(fā)實(shí)戰(zhàn)經(jīng)典(第2版)
- Xamarin Essentials
- Expert Delphi
- MySQL數(shù)據(jù)庫應(yīng)用項(xiàng)目教程
- iOS開發(fā)標(biāo)準(zhǔn)教程
- Learning Tableau 10(Second Edition)
- Visual Basic程序設(shè)計(jì)教程