Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
MySQL 5.1 Plugin Development

You're reading from  MySQL 5.1 Plugin Development

Product type Book
Published in Aug 2010
Publisher Packt
ISBN-13 9781849510608
Pages 288 pages
Edition 1st Edition
Languages

Table of Contents (16) Chapters

MySQL 5.1 Plugin Development
Credits
About the Authors
About the Reviewer
1. Preface
1. Compiling and Using MySQL Plugins 2. User Defined Functions 3. Daemon Plugins 4. Information Schema Plugins 5. Advanced Information Schema Plugins 6. Full-text Parser Plugins 7. Practical Full-text Parsers 8. Storage Engine Plugins 9. HTML Storage Engine—Reads and Writes 10. TOCAB Storage Engine — Implementing Indexes Beyond MySQL 5.1

Chapter 2. User Defined Functions

Way back in 1998, MySQL 3.21 introduced a framework that allowed users to create new SQL functions easily. It made it possible for developers to write their own functions in C/C++ and load them dynamically into the running server. The functions loaded within this framework were called User Defined Functions or UDFs.

Today not much has changed with UDFs, they are more stable and slightly more secure than they used to be, and they can be declared aggregate for use together with GROUP BY queries. However, many UDFs that worked in 1998 with MySQL 3.21.24 would still work at the time of writing in 2010, with MySQL 5.1.47.

MySQL UDFs are not part of the newer MySQL Plugin API, but there are future plans to make this happen. In the meantime, they can serve as an introduction to MySQL plugins. And sometimes UDFs can be used together with plugins to complement their functionality. In this chapter, we will cover creating User Defined Functions and write several of...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}