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

A constant integer output UDF


To show the basic construction of a UDF we will start with a simple constant function that returns an integer. The output of this UDF will be the same no matter what arguments are passed to the UDF. To make the example a little more complex and to demonstrate the initid->ptr usage we will allocate a small amount of memory upon initialization to store our integer. This example will be called udf_staticexample:

#include <stdlib.h>
#include <string.h>
#include <mysql.h>

These are the standard includes needed for this example. The header mysql.h contains the structures and constants that we will use.

my_bool udf_staticexample_init(UDF_INIT *initid,
UDF_ARGS *args, char *message)
{

We are calling this UDF udf_staticexample so all functions need to be prefixed with this. We start with the udf_staticexample_init() function, which as we have seen before, prepares the UDF for execution in the context of an SQL statement.

long long *staticint =...
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}