Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
a3ffb06a
Commit
a3ffb06a
authored
Jan 10, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge venu@work.mysql.com:/home/bk/mysql-4.1
into myvenu.com:/home/venu/work/sql/dev-4.1
parents
a1f84c11
0a16d590
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1422 additions
and
0 deletions
+1422
-0
Docs/prepare.texi
Docs/prepare.texi
+1422
-0
No files found.
Docs/prepare.texi
0 → 100755
View file @
a3ffb06a
\input
texinfo @c -*-texinfo-*-
@c Copyright 1997-2002 TcX AB, Detron HB and MySQL Finland AB
@c
@c This manual is NOT distributed under a GPL style license.
@c Use of the manual is subject to the following terms:
@c - Conversion to other formats is allowed, but the actual
@c content may not be altered or edited in any way.
@c - You may create a printed copy for your own personal use.
@c - For all other uses, such as selling printed copies or
@c using (parts of) the manual in another publication,
@c prior written agreement from MySQL AB is required.
@c
@c Please e-mail docs@mysql.com for more information or if
@c you are interested in doing a translation.
@c
@c *********************************************************
@c Note that @node names are used on our web site.
@c So do not change node names without checking
@c Makefile.am and SitePages first.
@c *********************************************************
@c
@c
%**start of header
@c there's a better way to do this... i just don't know it yet
@c sed will remove the "@c ifnusphere " to make this valid
@c ifnusphere @set nusphere 1
@setfilename prepare.info
@c We want the types in the same index
@c @syncodeindex tp fn
@c Get version information. This file is generated by the Makefile!!
@include include.texi
@ifclear tex-debug
@c This removes the black squares in the right margin
@finalout
@end ifclear
@c Set background for HTML
@set
_
body
_
tags BGCOLOR=#FFFFFF TEXT=#000000 LINK=#101090 VLINK=#7030B0
@c Set some style elements for the manual in HTML form. 'suggested'
@c natural language colors: aqua, black, blue, fuchsia, gray, green,
@c lime, maroon, navy, olive, purple, red, silver, teal, white, and
@c yellow. From Steeve Buehler <ahr@YogElements.com>
@set
_
extra
_
head <style> code
{
color:purple
}
tt
{
color:green
}
samp
{
color:navy
}
pre
{
color:maroon
}
</style>
@settitle MySQL Prepared Statements
@c We want single-sided heading format, with chapters on new pages. To
@c get double-sided format change 'on' below to 'odd'
@ifclear nusphere
@setchapternewpage on
@end ifclear
@ifset nusphere
@setchapternewpage odd
@end ifset
@c @paragraphindent 0
@ifset nusphere
@smallbook
@end ifset
@c @titlepage
@c @sp 10
@c @center @titlefont
{
MySQL Prepared Statements
}
@c @sp 10
@c @right Copyright @copyright
{}
1995-2003 MySQL AB
@c blank page after title page makes page 1 be a page front.
@c also makes the back of the title page blank.
@c @page
@c @end titlepage
@c Short contents, blank page, long contents.
@c until i can figure out the blank page, no short contents.
@c @shortcontents
@c @page
@c @page
@contents
@c This should be added. The HTML conversion also needs a MySQL version
@c number somewhere.
@iftex
@c change this to double if you want formatting for double-sided
@c printing
@headings single
@end iftex
@c @node Top, MySQL C API, (dir), (dir)
@c @menu
@c * MySQL C API::
@c @end menu
@c @node MySQL C API, , Top, Top
@c @chapter MySQL C API
@c @menu
@c * Prepared statements::
@c @end menu
@node Top, MySQL prepared statements, (dir), (dir)
@menu
* MySQL prepared statements::
@end menu
@node MySQL prepared statements, , Top, Top
@chapter MySQL Prepared Statements
@menu
* C Prepared statements::
* C Prepared statement datatypes::
* C Prepared statements function overview::
* C Prepared statement functions::
@end menu
@node C Prepared statements, C Prepared statement datatypes, MySQL prepared statements, MySQL prepared statements
@subsection C Prepared Statements
@sp 1
From MySQL 4.1 and above, you can also make use of the prepared
statements using the statement handler 'MYSQL
_
STMT', which supports
simultanious query executions along with input and output binding.
@sp 1
Prepared execution is an efficient way to execute a statement more than
once. The statement is first parsed, or prepared. This is executed one
or more times at a later time using the statement handle that is
returned during the prepare.
@sp 1
Another advantage of prepared statements is that, it uses a binary protocol
which makes the data tranfer between client and server in a more efficient
way than the old MySQL protocol.
@sp 1
Prepared execution is faster than direct execution for statements
executed more than once, primarly becuase the query is parsed only
once; In the case of direct execution, the query is parsed every
time. Prepared execution also can provide a reduction in the network
traffic becuase during the execute call, it only sends the data for the
parameters.
@node C Prepared statement datatypes, C Prepared statements function overview, C Prepared statements, MySQL prepared statements
@subsection C Prepared Statements DataTypes
Prepared statements mainly uses the following two @code
{
MYSQL
_
STMT
}
and
@code
{
MYSQL
_
BIND
}
structures:
@sp 1
@table @code
@tindex MYSQL C type
@item MYSQL
_
STMT
This structure represents a statement handle to prepared statements.It
is used for all statement related functions.
@sp 1
The statement is initialized when the query is prepared using
@code
{
mysql
_
prepare()
}
.
@sp 1
One connection can have 'n' statement handles, and the limit depends up on
the system resources.
@sp 1
@tindex MYSQL
_
BIND C type
@item MYSQL
_
BIND
This structure is used in order to bind parameter buffers inorder to
send the parameters data to @code
{
mysql
_
execute()
}
call; as well as to
bind row buffers to fetch the result set data using @code
{
mysql
_
fetch()
}
.
@end table
@sp 1
@noindent
The @code
{
MYSQL
_
BIND
}
structure contains the members listed here:
@table @code
@item enum enum
_
field
_
types buffer
_
type [input]
The type of the buffer. The @code
{
type
}
value must be one of the following:
@itemize @bullet
@item @code
{
MYSQL
_
TYPE
_
TINY
}
@item @code
{
MYSQL
_
TYPE
_
SHORT
}
@item @code
{
MYSQL
_
TYPE
_
LONG
}
@item @code
{
MYSQL
_
TYPE
_
LONGLONG
}
@item @code
{
MYSQL
_
TYPE
_
FLOAT
}
@item @code
{
MYSQL
_
TYPE
_
DOUBLE
}
@item @code
{
MYSQL
_
TYPE
_
STRING
}
@item @code
{
MYSQL
_
TYPE
_
VAR
_
STRING
}
@item @code
{
MYSQL
_
TYPE
_
TINY
_
BLOB
}
@item @code
{
MYSQL
_
TYPE
_
MEDIUM
_
BLOB
}
@item @code
{
MYSQL
_
TYPE
_
LONG
_
BLOB
}
@item @code
{
MYSQL
_
TYPE
_
BLOB
}
@end itemize
@sp 1
@item void *buffer [input/output]
A pointer to a buffer for the parameters data in case if it is used to
supply parameters data or pointer to a buffer in which to return the
data when the structure is used for result set bind.
@sp 1
@item long *length [input/output]
Pointer to the buffer for the parameter's length. When the structure is
used as a input parameter data binding, then this argument points to a
buffer that, when @code
{
mysql
_
execute()
}
is called, contains one of the
following:
@itemize @bullet
@item
The length of the parameter value stored in *buffer. This is ignored
except for character or binary C data.
@item
MYSQL
_
NULL
_
DATA. The parameter value is NULL.
@item
MYSQL
_
LONG
_
DATA. The parameter value is a long data and is supplied in
chunks through @code
{
mysql
_
send
_
long
_
data()
}
.
@end itemize
If the length is a null pointer, then the protocol assumes that all
input parameter values are non-NULL and that character and binary data
are null terminated.
When this structure is used in output binding, then @code
{
mysql
_
fetch()
}
return the following values in the length buffer:
@itemize @bullet
@item
The length of the data that is returned
@item
MYSQL
_
NULL
_
DATA, indicating the data returned is a NULL data.
@end itemize
@c @item bool is
_
null [input]
@c To indicate the parameter data is NULL. This is same as supplying
@c MYSQL
_
NULL
_
DATA, -1 as the length in length pointer.
@c @item bool is
_
long
_
data [input]
@c To indicate the parameter data is a long data, and the data will be
@c supplied in chunks through @code
{
mysql
_
send
_
long
_
data()
}
.This is also
@c same as supplying MYSQL
_
LONG
_
DATA, -2 as the length in length pointer.
@c @end table
@end table
@node C Prepared statements function overview, C Prepared statement functions, C Prepared statement datatypes, MySQL prepared statements
@subsection C Prepared Statements Function Overview
@cindex C Prepared statements API, functions
@cindex functions, C Prepared statements API
The functions available in the prepared statements are listed here and
are described in greater detail in the later section.
@xref
{
C Prepared statement functions
}
.
@multitable @columnfractions .32 .68
@item @strong
{
Function
}
@tab @strong
{
Description
}
@item @strong
{
mysql
_
prepare()
}
@tab Prepares an SQL string for execution.
@item @strong
{
mysql
_
param
_
count()
}
@tab Returns the number of parameters in a prepared SQL statement.
@item @strong
{
mysql
_
prepare
_
result()
}
@tab Returns prepared statement meta information in the form of resultset.
@item @strong
{
mysql
_
bind
_
param()
}
@tab Binds a buffer to parameter markers in a prepared SQL statement.
@item @strong
{
mysql
_
execute()
}
@tab Executes the prepared statement.
@item @strong
{
mysql
_
stmt
_
affected
_
rows()
}
@tab Returns the number of rows changes/deleted/inserted by the last UPDATE,DELETE,or INSERT query
@item @strong
{
mysql
_
bind
_
result()
}
@tab Binds application data buffers to columns in the resultset.
@item @strong
{
mysql
_
fetch()
}
@tab Fetches the next rowset of data from the result set and returns data for all bound columns.
@item @strong
{
mysql
_
stmt
_
close()
}
@tab Frees memory used by prepared statement.
@item @strong
{
mysql
_
stmt
_
errno()
}
@tab Returns the error number for the last statement execution.
@item @strong
{
mysql
_
stmt
_
error()
}
@tab Returns the error message for the last statement execution.
@item @strong
{
mysql
_
send
_
long
_
data()
}
@tab Sends long data in chunks to server.
@c TO BE MOVED TO MAIN C API FUCTIONS
@item @strong
{
mysql
_
commit()
}
@tab Commits the transaction.
@item @strong
{
mysql
_
rollback()
}
@tab Rollbacks the transaction.
@item @strong
{
mysql
_
autocommit()
}
@tab Toggles the autocommit mode to on/off.
@item @strong
{
mysql
_
more
_
results()
}
@tab Returns if there are any more results exists
@item @strong
{
mysql
_
next
_
result()
}
@tab Returns/Initiates the next result in the multi-query executions
@end multitable
@sp 1
Call @code
{
mysql
_
prepare()
}
to prepare and initialize the statement
handle, then call @code
{
mysql
_
bind
_
param()
}
to supply the parameters
data, and then call @code
{
mysql
_
execute()
}
to execute the query. You can
repeat the @code
{
mysql
_
execute()
}
by changing parameter values from the
respective buffer supplied through @code
{
mysql
_
bind
_
param()
}
.
@sp 1
In case if the query is a SELECT statement or any other query which
results in a resultset, then mysql
_
prepare() will also return the result
set meta data information in the form of @code
{
MYSQL
_
RES
}
result set
through @code
{
mysql
_
prepare
_
result()
}
.
@sp 1
You can supply the result buffers using @code
{
mysql
_
bind
_
result()
}
, so
that the @code
{
mysql
_
fetch()
}
will automatically returns data to this
buffers. This is row by row fetching.
@sp 1
You can also send the text or binary data in chunks to server using
@code
{
mysql
_
send
_
long
_
data()
}
, by specifying the option is
_
long
_
data=1
or length=MYSQL
_
LONG
_
DATA or -2 in the MYSQL
_
BIND structure supplied
with @code
{
mysql
_
bind
_
param()
}
.
@sp 1
Once the statement execution is over, it must be freed using
@code
{
mysql
_
stmt
_
close
}
so that it frees all the alloced resources for
the statement handle.
@subsubheading Execution Steps:
To prepare and execute a statement, the application:
@itemize @bullet
@item
Calls @strong
{
mysql
_
prepare()
}
and passes it a string containing the SQL
statement. On a successful prepare, mysql
_
prepare returns the valid statement
handle back to the application
@item
If the query results in a resultset, then @strong
{
mysql
_
prepare
_
result
}
returns the result set meta info..
@item
Sets the values of any parameters using @strong
{
mysql
_
bind
_
param
}
. All
parameters must be set; else it will return an error or produce
un-expected results
@item
Calls @strong
{
mysql
_
execute
}
to execute the statement.
@item
Repeat steps 2 and 3 as necessary, by changing the parameter values and
re-executing the statement.
@item
Bind the data buffers to return the row values, if it is a result set
query; using @strong
{
mysql
_
bind
_
result()
}
.
@item
Fetch the data to buffers row by row by calling @strong
{
mysql
_
fetch()
}
repetedely until no more rows found.
@item
When @strong
{
mysql
_
prepare()
}
is called, in the MySQL client/server protocol:
@itemize @minus
@item
Server parses the query and sends the ok status back to client by
assinging a statement id. It also sends total number of parameters,
columns count and its meta information if it is a result set oriented
query. All syntax and symantecs of the query is checked during this call
by the server.
@item
Client uses this statement id for the further executions, so that server
identifies the statement back from the pool of statements. Now, client
allocates a statement handle with this id and returns back to
application.
@end itemize
@item
When @strong
{
mysql
_
execute()
}
is called, in the MySQL client/server protocol:
@itemize @minus
@item
Client uses the statement handle and sends the parameters data to
server.
@item
Server identifies the statement using the id provided by the client, and
replaces the parameter markers with the newly supplied data and executes
the query. If it results in a result set, then sends the data back to
client, else sends an OK status with total number of rows
changes/deleted/inserted.
@end itemize
@item
When @strong
{
mysql
_
fetch()
}
is called, in the MySQL client/server protocol:
@itemize @minus
@item
Client reads the data from the packet row by row and places it to
application data buffers by doing the necessary conversions. If the
application buffer type is same as that of field type, then the
conversions are stright forward.
@end itemize
@end itemize
You can get the statement error code and message using
@code
{
mysql
_
stmt
_
errno()
}
and @code
{
mysql
_
stmt
_
error()
}
respectively.
@node C Prepared statement functions, , C Prepared statements function overview, MySQL prepared statements
@subsection C Prepared Statement Function Descriptions
You need to use the following functions when you want to prepare and
execute the queries.
@menu
* mysql
_
prepare::
* mysql
_
param
_
count::
* mysql
_
prepare
_
result::
* mysql
_
bind
_
param::
* mysql
_
execute::
* mysql
_
stmt
_
affected
_
rows::
* mysql
_
bind
_
result::
* mysql
_
fetch::
* mysql
_
send
_
long
_
data::
* mysql
_
stmt
_
close::
* mysql
_
stmt
_
errno::
* mysql
_
stmt
_
error::
* mysql
_
commit::
* mysql
_
rollback::
* mysql
_
autocommit::
@end menu
@node mysql
_
prepare, mysql
_
param
_
count, C Prepared statement functions, C Prepared statement functions
@subsubsection @code
{
mysql
_
prepare()
}
@findex @code
{
mysql
_
prepare()
}
@code
{
MYSQL
_
STMT * mysql
_
prepare(MYSQL *mysql, const char *query, unsigned
long length)
}
@subsubheading Description
Prepares the SQL query pointed to by the null-terminated string
'query'. The query must consist of a single SQL statement. You should
not add a terminating semicolon (`;`) or
\g
to the statement.
@sp 1
The application can include one or more parameter markers in the SQL
statement. To include a parameter marker, the appication embeds a
question mark (@code
{
?
}
) into the SQL string at the appropriate
position.
@sp 1
The markers are legal only in certain places in SQL statements. For
example, they are not allowed in the select list(the list of columns to
be returned by a SELECT statement), nor are they allowed as both
operands of a binary operator such as the equal sign (=), becuase it
would be impossible to determine the parameter type. In general,
parameters are legal only in Data Manipulation Languange(DML)
statements, and not in Data Defination Language(DDL) statements.
@sp 1
The parameter markers are then bound to application variables using
@code
{
mysql
_
bind
_
param()
}
.
@subsubheading Return Values
@code
{
MYSQL
_
STMT
}
if the prepare was successful. NULL if an error
occured.
@subsubheading Errors
If the prepare is not successful, i.e. when @code
{
mysql
_
prepare()
}
returned a
NULL statement, errors can be obtained by calling @code
{
mysql
_
error()
}
.
@subsubheading Example
For the usage of @code
{
mysql
_
prepare()
}
refer to the Example from
@ref
{
mysql
_
execute,mysql
_
execute()
}
.
@node mysql
_
param
_
count, mysql
_
prepare
_
result, mysql
_
prepare, C Prepared statement functions
@subsubsection @code
{
mysql
_
param
_
count()
}
@findex @code
{
mysql
_
param
_
count()
}
@code
{
unsigned int mysql
_
param
_
count(MYSQL
_
STMT *stmt)
}
@subsubheading Description
Returns the number of parameter markers present from the prepared query.
@subsubheading Return Values
An unsigned integer representing the number of parameters in a
statement.
@subsubheading Errors
None
@subsubheading Example
For the usage of @code
{
mysql
_
param
_
count()
}
refer to the Example from
@ref
{
mysql
_
execute,mysql
_
execute()
}
.
@node mysql
_
prepare
_
result, mysql
_
bind
_
param, mysql
_
param
_
count, C Prepared statement functions
@subsubsection @code
{
mysql
_
prepare
_
result()
}
@findex @code
{
mysql
_
prepare
_
result
}
.
@code
{
MYSQL
_
RES *mysql
_
prepare
_
result(MYSQL
_
STMT *stmt)
}
@subsubheading Description
If the @code
{
mysql
_
prepare()
}
resulted in a result set query, then
@code
{
mysql
_
prepare
_
result()
}
returns the result set meta data in the form of
@code
{
MYSQL
_
RES
}
structure; which can further be used to process the
meta information such as total number of fields and individual field
information. This resulted result set can be passed as an argument to
any of the field based APIs in order to process the result set meta data
information such as:
@itemize @minus
@item
mysql
_
num
_
fields()
@item
mysql
_
fetch
_
field()
@item
mysql
_
fetch
_
field
_
direct()
@item
mysql
_
fetch
_
fields()
@item
mysql
_
field
_
count()
@item
mysql
_
field
_
seek()
@item
mysql
_
field
_
tell() and
@item
mysql
_
free
_
result()
@end itemize
@subsubheading Return Values
A @code
{
MYSQL
_
RES
}
result structure. NULL if no meta information exists from
the prepared query.
@subsubheading Errors
None
@subsubheading Example
For the usage of @code
{
mysql
_
prepare
_
result()
}
refer to the Example from
@ref
{
mysql
_
fetch,mysql
_
fetch()
}
@node mysql
_
bind
_
param, mysql
_
execute, mysql
_
prepare
_
result, C Prepared statement functions
@subsubsection @code
{
mysql
_
bind
_
param()
}
@findex @code
{
mysql
_
bind
_
param()
}
@code
{
int mysql
_
bind
_
param(MYSQL
_
STMT *stmt, MYSQL
_
BIND *bind)
}
@subsubheading Description
@code
{
mysql
_
bind
_
param
}
is used to bind data for the parameter markers
in the SQL statement from @code
{
mysql
_
prepare
}
. It uses the structure
MYSQL
_
BIND to supply the data.
The supported buffer types are:
@itemize @bullet
@item
MYSQL
_
TYPE
_
TINY
@item
MYSQL
_
TYPE
_
SHORT
@item
MYSQL
_
TYPE
_
LONG
@item
MYSQL
_
TYPE
_
LONGLONG
@item
MYSQL
_
TYPE
_
FLOAT
@item
MYSQL
_
TYPE
_
DOUBLE
@item
MYSQL
_
TYPE
_
STRING
@item
MYSQL
_
TYPE
_
VAR
_
STRING
@item
MYSQL
_
TYPE
_
TINY
_
BLOB
@item
MYSQL
_
TYPE
_
MEDIUM
_
BLOB
@item
MYSQL
_
TYPE
_
LONG
_
BLOB
@end itemize
@subsubheading Return Values
Zero if the bind was successful. Non-zero if an error occured.
@subsubheading Errors
@table @code
@item CR
_
NO
_
PREPARE
_
STMT
No prepared statement exists
@item CR
_
NO
_
PARAMETERS
_
EXISTS
No parameters exists to bind
@item CR
_
INVALID
_
BUFFER
_
USE
Indicates if the bind is to supply the long data in chunks and if the
buffer type is non string or binary
@item CR
_
UNSUPPORTED
_
PARAM
_
TYPE
The conversion is not supported, possibly the buffer
_
type is illegal or
its not from the above list of supported types.
@end table
@subsubheading Example
For the usage of @code
{
mysql
_
bind
_
param()
}
refer to the Example from
@ref
{
mysql
_
execute,mysql
_
execute()
}
.
@node mysql
_
execute, mysql
_
stmt
_
affected
_
rows, mysql
_
bind
_
param, C Prepared statement functions
@subsubsection @code
{
mysql
_
execute()
}
@findex @code
{
mysql
_
execute()
}
@code
{
int mysql
_
execute(MYSQL
_
STMT *stmt
}
.
@subsubheading Description
@code
{
mysql
_
execute()
}
executes the prepared query associated with the
statement handle. The parameter marker values will be sent to server
during this call, so that server replaces markers with this newly
supplied data.
@sp 1
If the statement is UPDATE,DELETE,or INSERT, the total number of
changed/deletd/inserted values can be found by calling
@code
{
mysql
_
stmt
_
affected
_
rows
}
. If this is a result set query, then one
must call @code
{
mysql
_
fetch()
}
to fetch the data prior to calling any
other calls which results in query processing. For more information on
how to fetch the statement binary data, refer to @ref
{
mysql
_
fetch
}
.
@subsubheading Return Values
@code
{
mysql
_
execute()
}
returns the following return values:
@multitable @columnfractions .30 .65
@item @strong
{
Return Value
}
@tab @strong
{
Description
}
@item MYSQL
_
SUCCESS, 0 @tab Successful
@item MYSQL
_
STATUS
_
ERROR, 1 @tab Error occured. Error code and
message can be obtained by calling @code
{
mysql
_
stmt
_
errno()
}
and @code
{
mysql
_
stmt
_
error()
}
.
@item MYSQL
_
NEED
_
DATA, 99 @tab One of the parameter buffer is
indicating the data suppy in chunks, and the supply is not yet complete.
@end multitable
@subsubheading Errors
@table @code
@item CR
_
NO
_
PREPARE
_
QUERY
No query prepared prior to execution
@item CR
_
ALL
_
PARAMS
_
NOT
_
BOUND
Not all parameters data is supplied
@item CR
_
SERVER
_
GONE
_
ERROR
The MySQL server has gone away
@item CR
_
UNKNOWN
_
ERROR
An unkown error occured
@end table
@subsubheading Example
The following example explains the uasage of @code
{
mysql
_
prepare
}
,
@code
{
mysql
_
param
_
count
}
, @code
{
mysql
_
bind
_
param
}
, @code
{
mysql
_
execute
}
and @code
{
mysql
_
stmt
_
affected
_
rows()
}
.
@example
MYSQL
_
BIND bind[3];
MYSQL
_
STMT *stmt;
ulonglong affected
_
rows;
long length;
unsigned int param
_
count;
int int
_
data;
char str
_
data[50], query[255];
/* Set autocommit mode to true */
mysql
_
autocommit(mysql, 1);
if (mysql
_
query(mysql,"DROP TABLE IF EXISTS test
_
table"))
@
{
fprintf(stderr, "
\n
drop table failed");
fprintf(stderr, "
\n
%s", mysql_error(mysql));
exit(0);
@
}
if (mysql
_
query(mysql,"CREATE TABLE test
_
table(col1 int, col2 varchar(50),
\
col3 smallint,
\
col4 timestamp(14))"))
@
{
fprintf(stderr, "
\n
create table failed");
fprintf(stderr, "
\n
%s", mysql_error(mysql));
exit(0);
@
}
/* Prepare a insert query with 3 parameters */
strcpy(query, "INSERT INTO test
_
table(col1,col2,col3) values(?,?,?)");
if(!(stmt = mysql
_
prepare(mysql,query,strlen(query))))
@
{
fprintf(stderr, "
\n
prepare, insert failed");
fprintf(stderr, "
\n
%s", mysql_error(mysql));
exit(0);
@
}
fprintf(stdout, "
\n
prepare, insert successful");
/* Get the parameter count from the statement */
param
_
count= mysql
_
param
_
count(stmt);
fprintf(stdout, "
\n
total parameters in insert:
%d", param_count);
if (param
_
count != 3) /* validate parameter count */
@
{
fprintf(stderr, "
\n
invalid parameter count returned by MySQL");
exit(0);
@
}
/* Bind the data for the parameters */
/* INTEGER PART */
memset(bind,0,sizeof(bind));
bind[0].buffer
_
type= MYSQL
_
TYPE
_
LONG;
bind[0].buffer= (void *)
&
int
_
data;
/* STRING PART */
bind[1].buffer
_
type= MYSQL
_
TYPE
_
VAR
_
STRING;
bind[1].buffer= (void *)str
_
data;
bind[1].buffer
_
length= sizeof(str
_
data);
/* SMALLINT PART */
bind[2].buffer
_
type= MYSQL
_
TYPE
_
SHORT;
bind[2].buffer= (void *)
&
small
_
data;
bind[2].length= (long *)
&
length;
/* Bind the buffers */
if (mysql
_
bind
_
param(stmt, bind))
@
{
fprintf(stderr, "
\n
param bind failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
/* Specify the data */
int
_
data= 10; /* integer */
strcpy(str
_
data,"MySQL"); /* string */
/* INSERT SMALLINT data as NULL */
length= MYSQL
_
NULL
_
DATA;
/* Execute the insert statement - 1*/
if (mysql
_
execute(stmt))
@
{
fprintf(stderr, "
\n
execute 1 failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
fprintf(stderr, "
\n
send a bug report to bugs@@lists.mysql.com, by asking why this is not working ?");
exit(0);
@
}
/* Get the total rows affected */
affected
_
rows= mysql
_
stmt
_
affected
_
rows(stmt);
fprintf(stdout, "
\n
total affected rows:
%lld", affected_rows);
if (affected
_
rows != 1) /* validate affected rows */
@
{
fprintf(stderr, "
\n
invalid affected rows by MySQL");
exit(0);
@
}
/* Re-execute the insert, by changing the values */
int
_
data= 1000;
strcpy(str
_
data,"The most popular open source database");
small
_
data= 1000; /* smallint */
length= 0;
/* Execute the insert statement - 2*/
if (mysql
_
execute(stmt))
@
{
fprintf(stderr, "
\n
execute 2 failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
/* Get the total rows affected */
affected
_
rows= mysql
_
stmt
_
affected
_
rows(stmt);
fprintf(stdout, "
\n
total affected rows:
%lld", affected_rows);
if (affected
_
rows != 1) /* validate affected rows */
@
{
fprintf(stderr, "
\n
invalid affected rows by MySQL");
exit(0);
@
}
/* Close the statement */
if (mysql
_
stmt
_
close(stmt))
@
{
fprintf(stderr, "
\n
failed while closing the statement");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
/* DROP THE TABLE */
if (mysql
_
query(mysql,"DROP TABLE test
_
table"))
@
{
fprintf(stderr, "
\n
drop table failed");
fprintf(stderr, "
\n
%s", mysql_error(mysql));
exit(0);
@
}
fprintf(stdout, "Success, MySQL prepared statements are working great !!!");
@end example
@node mysql
_
stmt
_
affected
_
rows, mysql
_
bind
_
result, mysql
_
execute, C Prepared statement functions
@subsubsection @code
{
mysql
_
stmt
_
affected
_
rows()
}
@findex @code
{
mysql
_
stmt
_
affected
_
rows()
}
@code
{
ulonglong mysql
_
stmt
_
affected
_
rows(MYSQL
_
STMT *stmt)
}
@subsubheading Description
Returns total number of rows changed by the last execute statement. May
be called immediatlely after mysql
_
execute() for UPDATE,DELETE,or INSERT
statements.For SELECT statements, mysql
_
stmt
_
affected rows works like
mysql
_
num
_
rows().
@subsubheading Return Values
An integer greater than zero indicates the number of rows affected or
retrieved. Zero indicates that no records where updated for an UPDATE
statement, no rows matched the WHERE clause in the query or that no
query has yet been executed. -1 indicates that the query returned an
error or that, for a SELECT query, mysql
_
stmt
_
affected
_
rows() was called
prior to calling mysql
_
fetch().
@subsubheading Errors
None.
@subsubheading Example
For the usage of @code
{
mysql
_
stmt
_
affected
_
rows()
}
refer to the Example
from @ref
{
mysql
_
execute,mysql
_
execute()
}
.
@node mysql
_
bind
_
result, mysql
_
fetch, mysql
_
stmt
_
affected
_
rows, C Prepared statement functions
@subsubsection @code
{
mysql
_
bind
_
result()
}
@findex @code
{
mysql
_
bind
_
result()
}
@code
{
my
_
bool mysql
_
bind
_
result(MYSQL
_
STMT *stmt, MYSQL
_
BIND *bind)
}
@subsubheading Description
@code
{
mysql
_
bind
_
result()
}
is ised to associate, or bind, columns in the
resultset to data buffers and length buffers. When @code
{
mysql
_
fetch()
}
is
called to fetch data, the MySQL client protocol returns the data for the
bound columns in the specified buffers.
@sp 1
Note that all columns must be bound prior to calling @code
{
mysql
_
fetch()
}
in case of fetching the data to buffers; else @code
{
mysql
_
fetch()
}
simply ignores
the data fetch; also the buffers should be sufficient enough to hold the
data as the ptotocol doesn't return the data in chunks.
@sp 1
A column can be bound or rebound at any time, even after data has been
fetched from the result set. The new binding takes effect the next time
@code
{
mysql
_
fetch()
}
is called. For example, suppose an application binds
the columns in a result set and calls @code
{
mysql
_
fetch()
}
. The mysql
protocol returns data in the bound buffers. Now suppose the application
binds the columns to a different set of buffers, then the protocol does
not place the data for the just fetched row in the newly bound
buffers. Instead, it does when the next @code
{
mysql
_
fetch()
}
is called.
@sp 1
To bind a column, an application calls @code
{
mysql
_
bind
_
result()
}
and
passes the type, address, and the address of the length buffer.
The supported buffer types are:
@itemize @bullet
@item
MYSQL
_
TYPE
_
TINY
@item
MYSQL
_
TYPE
_
SHORT
@item
MYSQL
_
TYPE
_
LONG
@item
MYSQL
_
TYPE
_
LONGLONG
@item
MYSQL
_
TYPE
_
FLOAT
@item
MYSQL
_
TYPE
_
DOUBLE
@item
MYSQL
_
TYPE
_
STRING
@item
MYSQL
_
TYPE
_
VAR
_
STRING
@item
MYSQL
_
TYPE
_
BLOB
@item
MYSQL
_
TYPE
_
TINY
_
BLOB
@item
MYSQL
_
TYPE
_
MEDIUM
_
BLOB
@item
MYSQL
_
TYPE
_
LONG
_
BLOB
@end itemize
@subsubheading Return Values
Zero if the bind was successful. Non-zero if an error occured.
@subsubheading Errors
@table @code
@item CR
_
NO
_
PREPARE
_
STMT
No prepared statement exists
@item CR
_
UNSUPPORTED
_
PARAM
_
TYPE
The conversion is not supported, possibly the buffer
_
type is illegal or
its not from the list of supported types.
@end table
@subsubheading Example
For the usage of @code
{
mysql
_
bind
_
result()
}
refer to the Example from
@ref
{
mysql
_
fetch,mysql
_
fetch()
}
@node mysql
_
fetch, mysql
_
send
_
long
_
data, mysql
_
bind
_
result, C Prepared statement functions
@subsubsection @code
{
mysql
_
fetch()
}
@findex code
{
mysql
_
fetch()
}
@code
{
int mysql
_
fetch(MYSQL
_
STMT *stmt)
}
@subsubheading Description
@code
{
mysql
_
fetch()
}
returns the next rowset in the result set. It can
be called only while the result set exists i.e. after a call to
@code
{
mysql
_
execute()
}
that creates a result set.
@sp 1
If row buffers are bound using @code
{
mysql
_
bind
_
result()
}
, it returns
the data in those buffers for all the columns in the current row
set and the lengths are returned to the length pointer.
@sp 1
Note that, all columns must be bound by the application.
@sp 1
If the data fetched is a NULL data, then the length buffer will have a
value of @strong
{
MYSQL
_
NULL
_
DATA
}
, -1, else it will have the length of
the data being fetched based on the buffer type specified by the
application. All numeric, float and double types have the
fixed length(in bytes) as listed below:
@multitable @columnfractions .10 .30
@item @strong
{
Type
}
@tab @strong
{
Length
}
@item MYSQL
_
TYPE
_
TINY @tab 1
@item MYSQL
_
TYPE
_
SHORT @tab 2
@item MYSQL
_
TYPE
_
LONG @tab 4
@item MYSQL
_
TYPE
_
FLOAT @tab 4
@item MYSQL
_
TYPE
_
LONGLONG @tab 8
@item MYSQL
_
TYPE
_
DOUBLE @tab 8
@item MYSQL
_
TYPE
_
STRING @tab data length
@item MYSQL
_
TYPE
_
VAR
_
STRING @tab data
_
length
@item MYSQL
_
TYPE
_
BLOB @tab data
_
length
@item MYSQL
_
TYPE
_
TINY
_
BLOB @tab data
_
length
@item MYSQL
_
TYPE
_
MEDIUM
_
BLOB @tab data
_
length
@item MYSQL
_
TYPE
_
LONG
_
BLOB @tab data
_
length
@end multitable
@*
where @code
{
*data
_
length
}
is nothing but the 'Actual length of the data'.
@subsubheading Return Values
@multitable @columnfractions .30 .65
@item @strong
{
Return Value
}
@tab @strong
{
Description
}
@item MYSQL
_
SUCCESS, 0 @tab Successful, the data has been
fetched to application data buffers.
@item MYSQL
_
STATUS
_
ERROR, 1 @tab Error occured. Error code and
message can be obtained by calling @code
{
mysql
_
stmt
_
errno()
}
and @code
{
mysql
_
stmt
_
error()
}
.
@item MYSQL
_
NO
_
DATA, 100 @tab No more rows/data exists
@end multitable
@subsubheading Errors
@table @code
@item CR
_
UNSUPPORTED
_
PARAM
_
TYPE
If the field type is DATE,DATETIME,TIME,or TIMESTAMP; and the
application buffer type is non string based.
@item
All other un-supported conversions are returned from
@code
{
mysql
_
bind
_
result()
}
.
@end table
@subsubheading Example
The following example explains the usage of @code
{
mysql
_
prepare
_
result
}
,
@code
{
mysql
_
bind
_
result()
}
, and @code
{
mysql
_
fetch()
}
@example
MYSQL
_
STMT *stmt;
MYSQL
_
BIND bind[2];
MYSQL
_
RES *result;
int int
_
data;
long int
_
length, str
_
length;
char str
_
data[50];
query= "SELECT col1, col2 FROM test
_
table WHERE col1= 10)");
if (!(stmt= mysql
_
prepare(
&
mysql, query, strlen(query)))
@
{
fprintf(stderr, "
\n
prepare failed");
fprintf(stderr, "
\n
%s", mysql_error(&stmt));
exit(0);
@
}
/* Get the fields meta information */
if (!(result= mysql
_
prepare
_
result(stmt)))
@
{
fprintf(stderr, "
\n
prepare
_
result failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
fprintf(stdout, "Total fields:
%ld", mysql_num_fields(result));
if (mysql
_
num
_
fields(result) != 2)
@
{
fprintf(stderr, "
\n
prepare returned invalid field count");
exit(0);
@
}
/* Execute the SELECT query */
if (mysql
_
execute(stmt))
@
{
fprintf(stderr, "
\n
execute didn't retuned expected return code, MYSQL
_
NEED
_
DATA");
exit(0);
@
}
/* Bind the result data buffers */
bzero(bind, 0, sizeof(bind));
bind[0].buffer
_
type= MYSQL
_
TYPE
_
LONG;
bind[0].buffer= (void *)
&
int
_
data;
bind[0].length=
&
int
_
length;
bind[1].buffer
_
type= MYSQL
_
TYPE
_
VAR
_
STRING;
bind[1].buffer= (void *)str
_
data;
bind[1].length=
&
str
_
length;
if (mysql
_
bind
_
result(stmt, bind))
@
{
fprintf(stderr, "
\n
bind
_
result failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
/* Now fetch data to buffers */
if (mysql
_
fetch(stmt))
@
{
fprintf(stderr, "
\n
fetch failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
fprintf(stdout, "
\n
int
_
data:
%d, length: %ld", int_data, int_length);
fprintf(stdout, "
\n
str
_
data:
%s, length: %ld", str_data, str_length);
/* call mysql
_
fetch again */
if (mysql
_
fetch(stmt) |= MYSQL
_
NO
_
DATA)
@
{
fprintf(stderr, "
\n
fetch return more than one row);
exit(0);
@
}
/* Free the prepare result */
mysql
_
free
_
result(result);
/* Free the statement handle */
if (mysql
_
stmt
_
free(stmt))
@
{
fprintf(stderr, "
\n
failed to free the statement handle);
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
@end example
@node mysql
_
send
_
long
_
data, mysql
_
stmt
_
close, mysql
_
fetch, C Prepared statement functions
@subsubsection @code
{
mysql
_
send
_
long
_
data()
}
@findex @code
{
mysql
_
send
_
long
_
data()
}
.
@code
{
int mysql
_
send
_
long
_
data(MYSQL
_
STMT *stmt, unsigned int
parameter
_
number, const char *data, ulong length, my
_
bool is
_
last
_
data)
}
@subsubheading Description
Allows an application to send the data in pieces or chunks to
server. This function can be used to send character or binary data
values in parts to a column(it must be a text or blob) with a character or
binary data type.
@sp 1
The @code
{
data
}
is a pointer to buffer containing the actual data for
the parameter represendted by @code
{
parameter
_
number
}
. The @code
{
length
}
indicates the amount of data to be sent in bytes, and @code
{
is
_
last
_
data
}
is a
boolean flag to indicate the end of the data. If it is != 0, then the
current call will be the end of the data, else it waits for the
application to send all data. If the application doesn't ended the data
supply from @code
{
mysql
_
send
_
long
_
data()
}
, then the
@code
{
mysql
_
execute()
}
will return @strong
{
MYSQL
_
NEED
_
DATA
}
.
@subsubheading Return Values
Zero if the data is sent successfully to server. Non-zero if an error
occured.
@subsubheading Errors
@table @code
@item CR
_
INVALID
_
PARAMETER
_
NO
Invalid parameter number
@item CR
_
SERVER
_
GONE
_
ERROR
The MySQL server has gone away
@item CR
_
UNKNOWN
_
ERROR
An unkown error occured
@end table
@subsubheading Example
The following example explains how to send the data in chunks to text
column:
@example
MYSQL
_
BIND bind[1];
long length;
query= "INSERT INTO test
_
long
_
data(text
_
column) VALUES(?)");
if (!mysql
_
prepare(
&
mysql, query, strlen(query))
@
{
fprintf(stderr, "
\n
prepare failed");
fprintf(stderr, "
\n
%s", mysql_error(&stmt));
exit(0);
@
}
memset(bind, 0, sizeof(bind));
bind[0].buffer
_
type= MYSQL
_
TYPE
_
STRING;
bind[0].length=
&
length;
/* Indicate that the data supply is in CHUNKS */
length= MYSQL
_
LONG
_
DATA;
/* Bind the buffers */
if (mysql
_
bind
_
param(stmt, bind))
@
{
fprintf(stderr, "
\n
param bind failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
/* Execute the insert statement - It should return MYSQL
_
NEED
_
DATA */
if (mysql
_
execute(stmt) != MYSQL
_
NEED
_
DATA)
@
{
fprintf(stderr, "
\n
execute didn't retuned expected return code, MYSQL
_
NEED
_
DATA");
exit(0);
@
}
/* Supply data in chunks to server */
if (!mysql
_
send
_
long
_
data(stmt,1,"MySQL",5,0))
@
{
fprintf(stderr, "
\n
send
_
long
_
data failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
/* Supply the last piece of data */
if (mysql
_
send
_
long
_
data(stmt,1," - The most popular open source database",40,1))
@
{
fprintf(stderr, "
\n
send
_
long
_
data failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
/* Now, execute the query */
if (mysql
_
execute(stmt))
@
{
fprintf(stderr, "
\n
mysql
_
execute failed");
fprintf(stderr, "
\n
%s", mysql_stmt_error(stmt));
exit(0);
@
}
This inserts the data, "MySQL - The most popular open source database"
to the field 'text
_
column'.
@end example
@node mysql
_
stmt
_
close, mysql
_
stmt
_
errno, mysql
_
send
_
long
_
data, C Prepared statement functions
@subsubsection @code
{
mysql
_
stmt
_
close()
}
@findex @code
{
mysql
_
stmt
_
close()
}
@code
{
my
_
bool mysql
_
stmt
_
close(MYSQL
_
STMT *)
}
@subsubheading Description
Closes the prepared statement. @code
{
mysql
_
stmt
_
close()
}
also
deallocates the statement handle pointed to by @code
{
stmt
}
.
@subsubheading Return Values
Zero if the statement was freed successfully. Non-zero if an error occured.
@subsubheading Errors
@table @code
@item CR
_
SERVER
_
GONE
_
ERROR
The MySQL server has gone away
@item CR
_
UNKNOWN
_
ERROR
An unkown error occured
@end table
@subsubheading Example
For the usage of @code
{
mysql
_
stmt
_
close()
}
refer to the Example from
@ref
{
mysql
_
execute,mysql
_
execute()
}
.
@node mysql
_
stmt
_
errno, mysql
_
stmt
_
error, mysql
_
stmt
_
close, C Prepared statement functions
@subsubsection @code
{
mysql
_
stmt
_
errno()
}
@findex @code
{
mysql
_
stmt
_
errno()
}
@code
{
unsigned int mysql
_
stmt
_
errno(MYSQL
_
STMT *stmt)
}
@subsubheading Description
For the statement specified by @code
{
stmt
}
, @code
{
mysql
_
stmt
_
errno()
}
returns the error code for the most recently invoked statement API
function that can succeed or fail. A return value of zero means that no
error occured. Client error message numbers are listed in the MySQL
errmsg.h header file. Server error message numbers are listed in
mysqld
_
error.h. In the MySQL source distribution you can find a complete
list of error messages and error numbers in the file Docs/mysqld
_
error.txt
@subsubheading Return Values
An error code value. Zero if no error occured.
@subsubheading Errors
None
@node mysql
_
stmt
_
error, mysql
_
commit, mysql
_
stmt
_
errno, C Prepared statement functions
@subsubsection @code
{
mysql
_
stmt
_
error()
}
@findex @code
{
mysql
_
stmt
_
error()
}
.
@code
{
char *mysql
_
stmt
_
error(MYSQL
_
STMT *stmt)
}
@subsubheading Description
For the statement specified by @code
{
stmt
}
, @code
{
mysql
_
stmt
_
error()
}
returns the error message for the most recently invoked statement API
that can succeed or fail. An empty string ("") is returned if no error
occured. This means the following two sets are equivalent:
@example
if (mysql
_
stmt
_
errno(stmt))
@
{
// an error occured
@
}
if (mysql
_
stmt
_
error(stmt))
@
{
// an error occured
@
}
@end example
The language of the client error messages many be changed by recompiling
the MySQL client library. Currently you can choose error messages in
several different languages.
@subsubheading Return Values
A character string that describes the error. An empry string if no error
occured.
@subsubheading Errors
None
@node mysql
_
commit, mysql
_
rollback, mysql
_
stmt
_
error, C Prepared statement functions
@subsubsection @code
{
mysql
_
commit()
}
@findex @code
{
mysql
_
commit()
}
.
@code
{
my
_
bool mysql
_
commit(MYSQL *mysql)
}
@subsubheading Description
Commits the current transaction
@subsubheading Return Values
Zero if successful. Non-zero if an error occured.
@subsubheading Errors
None
@node mysql
_
rollback, mysql
_
autocommit, mysql
_
commit, C Prepared statement functions
@subsubsection @code
{
mysql
_
rollback()
}
@findex @code
{
mysql
_
rollback()
}
.
@code
{
my
_
bool mysql
_
rollback(MYSQL *mysql)
}
@subsubheading Description
Rollbacks the current transaction.
@subsubheading Return Values
Zero if successful. Non-zero if an error occured.
@subsubheading Errors
None.
@node mysql
_
autocommit, , mysql
_
rollback, C Prepared statement functions
@subsubsection @code
{
mysql
_
autocommit()
}
@findex @code
{
mysql
_
autocommit()
}
.
@code
{
my
_
bool mysql
_
autocommit(MYSQL *mysql, my
_
bool mode)
}
@subsubheading Description
Sets the autocommit mode to on or off. If the @code
{
mode
}
is '1', then it
sets the autocommit mode to on, else to off in case of '0'.
@subsubheading Return Values
Zero if successful. Non-zero if an error occured
@subsubheading Errors
None.
@bye
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment