add close to ODBC MODLANG-55

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8024 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-04-04 19:49:03 +00:00
parent 86cc41d646
commit 01f307c95b
1 changed files with 18 additions and 9 deletions

View File

@ -79,7 +79,7 @@ switch_odbc_status_t odbc_obj_connect(odbc_obj_t *obj)
static void destroy_odbc_obj(odbc_obj_t ** objp) static void destroy_odbc_obj(odbc_obj_t ** objp)
{ {
odbc_obj_t *obj = *objp; odbc_obj_t *obj = *objp;
if (obj == NULL) return;
if (obj->stmt) { if (obj->stmt) {
SQLFreeHandle(SQL_HANDLE_STMT, obj->stmt); SQLFreeHandle(SQL_HANDLE_STMT, obj->stmt);
} }
@ -156,10 +156,12 @@ static JSBool odbc_construct(JSContext * cx, JSObject * obj, uintN argc, jsval *
static void odbc_destroy(JSContext * cx, JSObject * obj) static void odbc_destroy(JSContext * cx, JSObject * obj)
{ {
odbc_obj_t *odbc_obj = (odbc_obj_t *) JS_GetPrivate(cx, obj); odbc_obj_t *odbc_obj;
if (obj == NULL) return;
odbc_obj = (odbc_obj_t *) JS_GetPrivate(cx, obj);
if (odbc_obj) { if (odbc_obj) {
destroy_odbc_obj(&odbc_obj); destroy_odbc_obj(&odbc_obj);
JS_SetPrivate(cx, obj, NULL);
} }
} }
@ -405,6 +407,12 @@ static JSBool odbc_get_data(JSContext * cx, JSObject * obj, uintN argc, jsval *a
} }
static JSBool odbc_close(JSContext * cx, JSObject * obj, uintN argc, jsval *argv, jsval *rval)
{
odbc_destroy(cx, obj);
return JS_TRUE;
}
enum odbc_tinyid { enum odbc_tinyid {
odbc_NAME odbc_NAME
}; };
@ -417,6 +425,7 @@ static JSFunctionSpec odbc_methods[] = {
{"numRows", odbc_num_rows, 1}, {"numRows", odbc_num_rows, 1},
{"nextRow", odbc_next_row, 1}, {"nextRow", odbc_next_row, 1},
{"getData", odbc_get_data, 1}, {"getData", odbc_get_data, 1},
{"close", odbc_close, 1},
{0} {0}
}; };