2004-05-19 02:01:52 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 5 |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1997-2004 The PHP Group |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: George Schlossnagle <george@omniti.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
#include "php_ini.h"
|
|
|
|
#include "ext/standard/info.h"
|
|
|
|
#include "pdo/php_pdo.h"
|
|
|
|
#include "pdo/php_pdo_driver.h"
|
|
|
|
#include "php_pdo_mysql.h"
|
|
|
|
#include "php_pdo_mysql_int.h"
|
|
|
|
|
|
|
|
|
2004-05-20 04:57:02 +08:00
|
|
|
static int pdo_mysql_stmt_dtor(pdo_stmt_t *stmt TSRMLS_DC)
|
2004-05-19 02:01:52 +08:00
|
|
|
{
|
|
|
|
pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
|
|
|
|
|
|
|
|
if (S->result) {
|
|
|
|
/* free the resource */
|
|
|
|
mysql_free_result(S->result);
|
|
|
|
S->result = NULL;
|
|
|
|
}
|
2005-02-28 04:34:36 +08:00
|
|
|
if (S->einfo.errmsg) {
|
|
|
|
efree(S->einfo.errmsg);
|
|
|
|
S->einfo.errmsg = NULL;
|
|
|
|
}
|
2004-05-19 02:01:52 +08:00
|
|
|
efree(S);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-05-20 04:57:02 +08:00
|
|
|
static int pdo_mysql_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC)
|
2004-05-19 02:01:52 +08:00
|
|
|
{
|
|
|
|
pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
|
|
|
|
pdo_mysql_db_handle *H = S->H;
|
2005-02-27 20:15:47 +08:00
|
|
|
my_ulonglong row_count;
|
2004-05-19 02:01:52 +08:00
|
|
|
|
2005-02-27 20:05:46 +08:00
|
|
|
/* ensure that we free any previous unfetched results */
|
|
|
|
if (S->result) {
|
|
|
|
mysql_free_result(S->result);
|
|
|
|
S->result = NULL;
|
2004-05-19 02:01:52 +08:00
|
|
|
}
|
2005-02-27 20:05:46 +08:00
|
|
|
|
2004-05-20 23:51:25 +08:00
|
|
|
if (mysql_real_query(H->server, stmt->active_query_string, stmt->active_query_stringlen) != 0) {
|
2004-05-21 00:13:13 +08:00
|
|
|
pdo_mysql_error_stmt(stmt);
|
2004-05-19 02:01:52 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2005-02-27 20:15:47 +08:00
|
|
|
|
|
|
|
row_count = mysql_affected_rows(H->server);
|
|
|
|
if (row_count == (my_ulonglong)-1) {
|
2005-04-19 19:41:04 +08:00
|
|
|
/* we either have a query that returned a result set or an error occured
|
|
|
|
lets see if we have access to a result set */
|
2005-06-25 03:45:59 +08:00
|
|
|
if (!H->buffered) {
|
|
|
|
S->result = mysql_use_result(H->server);
|
|
|
|
} else {
|
|
|
|
S->result = mysql_store_result(H->server);
|
|
|
|
}
|
2005-02-27 20:15:47 +08:00
|
|
|
if (NULL == S->result) {
|
2004-07-13 04:09:19 +08:00
|
|
|
pdo_mysql_error_stmt(stmt);
|
|
|
|
return 0;
|
|
|
|
}
|
2005-02-27 20:15:47 +08:00
|
|
|
|
|
|
|
stmt->row_count = 0;
|
|
|
|
|
|
|
|
if (!stmt->executed) {
|
|
|
|
stmt->column_count = (int) mysql_num_fields(S->result);
|
2005-02-27 20:43:23 +08:00
|
|
|
S->fields = mysql_fetch_fields(S->result);
|
2005-02-27 20:15:47 +08:00
|
|
|
}
|
|
|
|
} else {
|
2005-04-19 19:41:04 +08:00
|
|
|
/* this was a DML or DDL query (INSERT, UPDATE, DELETE, ... */
|
2005-02-27 20:15:47 +08:00
|
|
|
stmt->row_count = row_count;
|
2004-05-19 02:01:52 +08:00
|
|
|
}
|
2005-02-27 20:15:47 +08:00
|
|
|
|
2004-05-19 02:01:52 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-05-20 04:57:02 +08:00
|
|
|
static int pdo_mysql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data *param,
|
2004-05-19 02:01:52 +08:00
|
|
|
enum pdo_param_event event_type TSRMLS_DC)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-01-12 14:10:31 +08:00
|
|
|
static int pdo_mysql_stmt_fetch(pdo_stmt_t *stmt,
|
|
|
|
enum pdo_fetch_orientation ori, long offset TSRMLS_DC)
|
2004-05-19 02:01:52 +08:00
|
|
|
{
|
|
|
|
pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
|
2004-05-20 23:51:25 +08:00
|
|
|
if (!S->result) {
|
|
|
|
return 0;
|
|
|
|
}
|
2005-02-27 19:42:18 +08:00
|
|
|
if ((S->current_data = mysql_fetch_row(S->result)) == NULL) {
|
2005-02-27 20:43:23 +08:00
|
|
|
if (mysql_errno(S->H->server)) {
|
|
|
|
pdo_mysql_error_stmt(stmt);
|
|
|
|
}
|
2004-05-19 02:01:52 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
S->current_lengths = mysql_fetch_lengths(S->result);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-05-20 04:57:02 +08:00
|
|
|
static int pdo_mysql_stmt_describe(pdo_stmt_t *stmt, int colno TSRMLS_DC)
|
2004-05-19 02:01:52 +08:00
|
|
|
{
|
|
|
|
pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
|
|
|
|
struct pdo_column_data *cols = stmt->columns;
|
2005-02-27 20:43:23 +08:00
|
|
|
unsigned int i;
|
2004-05-19 02:01:52 +08:00
|
|
|
|
2004-05-20 23:51:25 +08:00
|
|
|
if (!S->result) {
|
|
|
|
return 0;
|
|
|
|
}
|
2005-02-27 20:43:23 +08:00
|
|
|
|
|
|
|
if (colno >= stmt->column_count) {
|
|
|
|
/* error invalid column */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-19 02:01:52 +08:00
|
|
|
/* fetch all on demand, this seems easiest
|
|
|
|
** if we've been here before bail out
|
|
|
|
*/
|
2005-02-27 19:42:18 +08:00
|
|
|
if (cols[0].name) {
|
2004-05-19 02:01:52 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2005-02-27 20:43:23 +08:00
|
|
|
for(i=0; i < stmt->column_count; i++) {
|
2004-05-19 02:01:52 +08:00
|
|
|
int namelen;
|
2005-02-27 20:43:23 +08:00
|
|
|
namelen = strlen(S->fields[i].name);
|
|
|
|
cols[i].precision = S->fields[i].decimals;
|
|
|
|
cols[i].maxlen = S->fields[i].length;
|
2004-05-19 02:01:52 +08:00
|
|
|
cols[i].namelen = namelen;
|
2005-02-27 20:43:23 +08:00
|
|
|
cols[i].name = estrndup(S->fields[i].name, namelen + 1);
|
2004-05-19 02:01:52 +08:00
|
|
|
cols[i].param_type = PDO_PARAM_STR;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-02-07 07:22:37 +08:00
|
|
|
static int pdo_mysql_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, unsigned long *len, int *caller_frees TSRMLS_DC)
|
2004-05-19 02:01:52 +08:00
|
|
|
{
|
|
|
|
pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
|
2004-09-27 04:47:03 +08:00
|
|
|
|
2005-02-27 19:42:18 +08:00
|
|
|
if (S->current_data == NULL || !S->result) {
|
2004-05-19 02:01:52 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2005-02-27 20:43:23 +08:00
|
|
|
if (colno >= stmt->column_count) {
|
2004-05-19 02:01:52 +08:00
|
|
|
/* error invalid column */
|
|
|
|
return 0;
|
|
|
|
}
|
2004-05-20 18:30:29 +08:00
|
|
|
*ptr = S->current_data[colno];
|
2004-05-19 02:01:52 +08:00
|
|
|
*len = S->current_lengths[colno];
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-09-27 04:47:03 +08:00
|
|
|
static char *type_to_name_native(int type)
|
|
|
|
{
|
|
|
|
#define PDO_MYSQL_NATIVE_TYPE_NAME(x) case FIELD_TYPE_##x: return #x;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(STRING)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(VAR_STRING)
|
|
|
|
#ifdef MYSQL_HAS_TINY
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(TINY)
|
|
|
|
#endif
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(SHORT)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(LONG)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(LONGLONG)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(INT24)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(FLOAT)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(DOUBLE)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(DECIMAL)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(TIMESTAMP)
|
|
|
|
#ifdef MYSQL_HAS_YEAR
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(YEAR)
|
|
|
|
#endif
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(DATE)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(TIME)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(DATETIME)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(TINY_BLOB)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(MEDIUM_BLOB)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(LONG_BLOB)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(BLOB)
|
|
|
|
PDO_MYSQL_NATIVE_TYPE_NAME(NULL)
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pdo_mysql_stmt_col_meta(pdo_stmt_t *stmt, long colno, zval *return_value TSRMLS_DC)
|
|
|
|
{
|
|
|
|
pdo_mysql_stmt *S = (pdo_mysql_stmt*)stmt->driver_data;
|
|
|
|
MYSQL_FIELD *F;
|
|
|
|
zval *flags;
|
|
|
|
char *str;
|
|
|
|
|
2005-02-27 19:42:18 +08:00
|
|
|
if (!S->result) {
|
2004-09-27 04:47:03 +08:00
|
|
|
return FAILURE;
|
|
|
|
}
|
2005-02-27 20:43:23 +08:00
|
|
|
if (colno >= stmt->column_count) {
|
2004-09-27 04:47:03 +08:00
|
|
|
/* error invalid column */
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
array_init(return_value);
|
|
|
|
MAKE_STD_ZVAL(flags);
|
|
|
|
array_init(flags);
|
|
|
|
|
2005-02-27 20:43:23 +08:00
|
|
|
F = S->fields + colno;
|
|
|
|
|
2004-09-27 04:47:03 +08:00
|
|
|
if (F->def) {
|
|
|
|
add_assoc_string(return_value, "mysql:def", F->def, 1);
|
|
|
|
}
|
|
|
|
if (IS_NOT_NULL(F->flags)) {
|
|
|
|
add_next_index_string(flags, "not_null", 1);
|
|
|
|
}
|
|
|
|
if (IS_PRI_KEY(F->flags)) {
|
|
|
|
add_next_index_string(flags, "primary_key", 1);
|
|
|
|
}
|
|
|
|
if (F->flags & MULTIPLE_KEY_FLAG) {
|
|
|
|
add_next_index_string(flags, "multiple_key", 1);
|
|
|
|
}
|
|
|
|
if (F->flags & UNIQUE_KEY_FLAG) {
|
|
|
|
add_next_index_string(flags, "unique_key", 1);
|
|
|
|
}
|
|
|
|
if (IS_BLOB(F->flags)) {
|
|
|
|
add_next_index_string(flags, "blob", 1);
|
|
|
|
}
|
2005-02-21 07:08:34 +08:00
|
|
|
str = type_to_name_native(F->type);
|
2004-09-27 04:47:03 +08:00
|
|
|
if (str) {
|
|
|
|
add_assoc_string(return_value, "native_type", str, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
add_assoc_zval(return_value, "flags", flags);
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2004-05-19 02:01:52 +08:00
|
|
|
struct pdo_stmt_methods mysql_stmt_methods = {
|
2004-05-20 04:57:02 +08:00
|
|
|
pdo_mysql_stmt_dtor,
|
|
|
|
pdo_mysql_stmt_execute,
|
|
|
|
pdo_mysql_stmt_fetch,
|
|
|
|
pdo_mysql_stmt_describe,
|
|
|
|
pdo_mysql_stmt_get_col,
|
2004-09-27 04:47:03 +08:00
|
|
|
pdo_mysql_stmt_param_hook,
|
|
|
|
NULL, /* set_attr */
|
|
|
|
NULL, /* get_attr */
|
|
|
|
pdo_mysql_stmt_col_meta
|
2004-05-19 02:01:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|