1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
/***************************************************************************
* Copyright (C) 1995-2002 MySQL AB, www.mysql.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
****************************************************************************/
/***************************************************************************
* HANDLE.C *
* *
* @description: Allocation and freeing of handles *
* *
* @author : MySQL AB(monty@mysql.com, venu@mysql.com) *
* @date : 2001-Nov-07 *
* @product : myodbc3 *
* *
****************************************************************************/
/***************************************************************************
* The following ODBC APIs are implemented in this file: *
* *
* SQLAllocHandle (ISO 92) *
* SQLFreeHandle (ISO 92) *
* SQLAllocEnv (ODBC, Deprecated) *
* SQLAllocConnect (ODBC, Deprecated) *
* SQLAllocStmt (ODBC, Deprecated) *
* SQLFreeEnv (ODBC, Deprecated) *
* SQLFreeConnect (ODBC, Deprecated) *
* SQLFreeStmt (ISO 92) *
* *
****************************************************************************/
#include "myodbc3.h"
/*
@type : myodbc3 internal
@purpose : to allocate the environment handle and to maintain
its list
*/
SQLRETURN SQL_API my_SQLAllocEnv(SQLHENV FAR * phenv)
{
myodbc_init();
#ifndef _UNIX_
{
HGLOBAL henv= GlobalAlloc (GMEM_MOVEABLE | GMEM_ZEROINIT, sizeof (ENV));
if (henv == NULL || (*phenv = (SQLHENV)GlobalLock (henv)) == NULL)
{
GlobalFree (henv); /* Free it if lock fails */
*phenv = SQL_NULL_HENV;
return (SQL_ERROR);
}
}
#else
if (!(*phenv = (SQLHENV) my_malloc(sizeof(ENV),MYF(MY_ZEROFILL))))
{
*phenv = SQL_NULL_HENV;
return (SQL_ERROR);
}
#endif /* _UNIX_ */
((ENV FAR *)*phenv)->odbc_ver = SQL_OV_ODBC2;
return (SQL_SUCCESS);
}
/*
@type : ODBC 1.0 API
@purpose : to allocate the environment handle
*/
SQLRETURN SQL_API SQLAllocEnv(SQLHENV FAR * phenv)
{
return my_SQLAllocEnv(phenv);
}
/*
@type : myodbc3 internal
@purpose : to free the environment handle
*/
SQLRETURN SQL_API my_SQLFreeEnv(SQLHENV henv)
{
#ifndef _UNIX_
GlobalUnlock(GlobalHandle((HGLOBAL) henv));
GlobalFree(GlobalHandle((HGLOBAL) henv));
#else
myodbc_end();
my_free((char*) henv,MYF(0));
#endif /* _UNIX_ */
return (SQL_SUCCESS);
}
/*
@type : ODBC 1.0 API
@purpose : to free the environment handle
*/
SQLRETURN SQL_API SQLFreeEnv(SQLHENV henv)
{
return my_SQLFreeEnv(henv);
}
/*
@type : myodbc3 internal
@purpose : to allocate the connection handle and to
maintain the connection list
*/
SQLRETURN SQL_API my_SQLAllocConnect(SQLHENV henv, SQLHDBC FAR *phdbc)
{
DBC FAR *dbc;
ENV FAR *penv=(ENV FAR*) henv;
#ifndef _UNIX_
{
HGLOBAL hdbc = GlobalAlloc (GMEM_MOVEABLE | GMEM_ZEROINIT, sizeof (DBC));
if (!hdbc || (*phdbc = (SQLHDBC)GlobalLock (hdbc)) == SQL_NULL_HDBC)
{
GlobalFree (hdbc);
*phdbc = SQL_NULL_HENV;
return (set_handle_error(1,henv,MYERR_S1001,NULL,0));
}
}
#else
if (!(*phdbc = (SQLHDBC) my_malloc(sizeof(DBC),MYF(MY_ZEROFILL))))
{
*phdbc = SQL_NULL_HDBC;
return (set_handle_error(1,henv,MYERR_S1001,NULL,0));
}
#endif /* _UNIX_ */
dbc=(DBC FAR*) *phdbc;
dbc->mysql.net.vio = 0; /* Marker if open */
dbc->flag=0;
dbc->stmt_options.max_rows= dbc->stmt_options.max_length= 0L;
dbc->stmt_options.bind_type=SQL_BIND_BY_COLUMN;
dbc->stmt_options.rows_in_set=1;
dbc->stmt_options.cursor_type=SQL_CURSOR_FORWARD_ONLY; /* ODBC default */
dbc->login_timeout=0;
dbc->last_query_time= (time_t) time((time_t*) 0);
dbc->txn_isolation=DEFAULT_TXN_ISOLATION;
dbc->env= penv;
penv->connections=list_add(penv->connections,&dbc->list);
dbc->list.data=dbc;
pthread_mutex_init(&dbc->lock,NULL);
return (SQL_SUCCESS);
}
/*
@type : ODBC 1.0 API
@purpose : to allocate the connection handle and to
maintain the connection list
*/
SQLRETURN SQL_API SQLAllocConnect(SQLHENV henv, SQLHDBC FAR *phdbc)
{
return my_SQLAllocConnect(henv, phdbc);
}
/*
@type : myodbc3 internal
@purpose : to allocate the connection handle and to
maintain the connection list
*/
SQLRETURN SQL_API my_SQLFreeConnect(SQLHDBC hdbc)
{
DBC FAR *dbc=(DBC FAR*) hdbc;
DBUG_ENTER("SQLFreeConnect");
dbc->env->connections=list_delete(dbc->env->connections,&dbc->list);
my_free(dbc->dsn,MYF(MY_ALLOW_ZERO_PTR));
my_free(dbc->database,MYF(MY_ALLOW_ZERO_PTR));
my_free(dbc->server,MYF(MY_ALLOW_ZERO_PTR));
my_free(dbc->user,MYF(MY_ALLOW_ZERO_PTR));
my_free(dbc->password,MYF(MY_ALLOW_ZERO_PTR));
pthread_mutex_destroy(&dbc->lock);
#ifndef _UNIX_
GlobalUnlock(GlobalHandle((HGLOBAL) hdbc));
GlobalFree(GlobalHandle((HGLOBAL) hdbc));
#else
my_free((char*) hdbc,MYF(0));
#endif
DBUG_RETURN(SQL_SUCCESS);
}
/*
@type : ODBC 1.0 API
@purpose : to allocate the connection handle and to
maintain the connection list
*/
SQLRETURN SQL_API SQLFreeConnect(SQLHDBC hdbc)
{
return my_SQLFreeConnect(hdbc);
}
/*
@type : myodbc3 internal
@purpose : allocates the statement handle
*/
SQLRETURN SQL_API my_SQLAllocStmt(SQLHDBC hdbc,SQLHSTMT FAR *phstmt)
{
#ifndef _UNIX_
HGLOBAL hstmt;
#endif
STMT FAR* stmt;
DBC FAR *dbc=(DBC FAR*) hdbc;
DBUG_ENTER("SQLAllocStmt");
#ifndef _UNIX_
hstmt = GlobalAlloc (GMEM_MOVEABLE | GMEM_ZEROINIT, sizeof (STMT));
if (!hstmt || (*phstmt = (SQLHSTMT)GlobalLock (hstmt)) == SQL_NULL_HSTMT)
{
GlobalFree (hstmt);
*phstmt = SQL_NULL_HSTMT;
DBUG_RETURN(SQL_ERROR);
}
#else
*phstmt = (SQLHSTMT) my_malloc(sizeof (STMT), MYF(MY_ZEROFILL | MY_WME));
if (*phstmt == SQL_NULL_HSTMT)
{
*phstmt = SQL_NULL_HSTMT;
DBUG_RETURN(SQL_ERROR);
}
#endif /* IS UNIX */
stmt= (STMT FAR*) *phstmt;
stmt->dbc= dbc;
dbc->statements=list_add(dbc->statements,&stmt->list);
stmt->list.data=stmt;
stmt->stmt_options=dbc->stmt_options;
stmt->stmt_options.cursor_scollable=SQL_SCROLLABLE;
init_dynamic_array(&stmt->params,sizeof(PARAM_BIND),32,64);
DBUG_RETURN(SQL_SUCCESS);
}
/*
@type : ODBC 1.0 APO
@purpose : allocates the statement handle
*/
SQLRETURN SQL_API SQLAllocStmt(SQLHDBC hdbc,SQLHSTMT FAR *phstmt)
{
return my_SQLAllocStmt(hdbc,phstmt);
}
/*
@type : ODBC 1.0 API
@purpose : stops processing associated with a specific statement,
closes any open cursors associated with the statement,
discards pending results, or, optionally, frees all
resources associated with the statement handle
*/
SQLRETURN SQL_API SQLFreeStmt(SQLHSTMT hstmt,SQLUSMALLINT fOption)
{
return my_SQLFreeStmt(hstmt,fOption);
}
/*
@type : myodbc3 internal
@purpose : stops processing associated with a specific statement,
closes any open cursors associated with the statement,
discards pending results, or, optionally, frees all
resources associated with the statement handle
*/
SQLRETURN SQL_API my_SQLFreeStmt(SQLHSTMT hstmt,SQLUSMALLINT fOption)
{
STMT FAR *stmt=(STMT FAR*) hstmt;
uint i;
DBUG_ENTER("SQLFreeStmt");
DBUG_PRINT("enter",("stmt: %lx option: %d",hstmt,fOption));
if (fOption == SQL_UNBIND)
{
x_free(stmt->bind);
stmt->bind=0;
stmt->bound_columns=0;
DBUG_RETURN(SQL_SUCCESS);
}
for (i=0 ; i < stmt->params.elements ; i++)
{
PARAM_BIND *param=dynamic_element(&stmt->params,i,PARAM_BIND*);
if (param->alloced)
{
my_free(param->value,MYF(0));
param->alloced=0;
}
if (fOption == SQL_RESET_PARAMS)
{
param->used=0;
param->real_param_done = FALSE;
}
}
if (fOption == SQL_RESET_PARAMS)
{
DBUG_RETURN(SQL_SUCCESS);
}
mysql_free_result(stmt->result);
x_free((gptr) stmt->fields);
x_free((gptr) stmt->array);
x_free((gptr) stmt->result_array);
x_free((gptr) stmt->odbc_types);
stmt->result=0;
stmt->result_lengths=0;
stmt->fields=0;
stmt->array=0;
stmt->result_array=0;
stmt->odbc_types=0;
stmt->current_values=0; /* For SQLGetData */
stmt->fix_fields=0;
stmt->affected_rows=0;
stmt->current_row=stmt->cursor_row=stmt->rows_found_in_set=0;
stmt->state=ST_UNKNOWN;
if (fOption == MYSQL_RESET_BUFFERS)
{
DBUG_RETURN(SQL_SUCCESS);
}
x_free((gptr) stmt->table_name);
stmt->table_name = 0;
stmt->dummy_state = ST_DUMMY_UNKNOWN;
stmt->cursor.pk_validated = false;
for (i=stmt->cursor.pk_count; i--;)
stmt->cursor.pkcol[i].bind_done = 0;
stmt->cursor.pk_count = 0;
if (fOption == SQL_CLOSE)
{
DBUG_RETURN(SQL_SUCCESS);
}
/* At this point, only MYSQL_RESET and SQL_DROP left out */
x_free((gptr) stmt->query);
stmt->query=0;
stmt->param_count=0;
if (fOption == MYSQL_RESET)
{
DBUG_RETURN(SQL_SUCCESS);
}
stmt->stmt_options.rowStatusPtr=0;
x_free((gptr) stmt->cursor.name);
x_free((gptr) stmt->bind);
delete_dynamic(&stmt->params);
stmt->dbc->statements=list_delete(stmt->dbc->statements,&stmt->list);
#ifndef _UNIX_
GlobalUnlock (GlobalHandle ((HGLOBAL) hstmt));
GlobalFree (GlobalHandle((HGLOBAL) hstmt));
#endif /* !_UNIX_ */
#ifdef _UNIX_
my_free((char*) hstmt,MYF(0));
#endif /* _UNIX_*/
DBUG_RETURN(SQL_SUCCESS);
}
/*
@type : ODBC 3.0 API
@purpose : allocates an environment, connection, statement, or
descriptor handle
*/
SQLRETURN SQL_API SQLAllocHandle( SQLSMALLINT HandleType,
SQLHANDLE InputHandle,
SQLHANDLE *OutputHandlePtr)
{
SQLRETURN error = SQL_ERROR;
DBUG_ENTER("SQLAllocHandle");
DBUG_PRINT("enter",("handle type: %d",HandleType));
switch (HandleType) {
case SQL_HANDLE_ENV:
error = my_SQLAllocEnv(OutputHandlePtr);
break;
case SQL_HANDLE_DBC:
error = my_SQLAllocConnect(InputHandle,OutputHandlePtr);
break;
case SQL_HANDLE_STMT:
error = my_SQLAllocStmt(InputHandle,OutputHandlePtr);
break;
default:
DBUG_RETURN(set_handle_error(SQL_HANDLE_DBC,InputHandle,MYERR_S1C00,NULL,
0));
}
DBUG_RETURN(error);
}
/*
@type : ODBC 3.0 API
@purpose : frees resources associated with a specific environment,
connection, statement, or descriptor handle
*/
SQLRETURN SQL_API SQLFreeHandle(SQLSMALLINT HandleType,
SQLHANDLE Handle)
{
SQLRETURN error = SQL_ERROR;
DBUG_ENTER("SQLFreeHandle");
DBUG_PRINT("enter",("handle type: %d",HandleType));
switch (HandleType) {
case SQL_HANDLE_ENV:
error = my_SQLFreeEnv(Handle);
break;
case SQL_HANDLE_DBC:
error = my_SQLFreeConnect(Handle);
break;
case SQL_HANDLE_STMT:
error = my_SQLFreeStmt(Handle, SQL_DROP);
break;
default:
DBUG_RETURN(SQL_ERROR);
}
DBUG_RETURN(error);
}
|