mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-14 02:56:48 +00:00
msvc odbc build
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4854 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
18b782a000
commit
90d2d377e2
@ -44,7 +44,9 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <sqltypes.h>
|
#include <sqltypes.h>
|
||||||
|
|
||||||
SWITCH_BEGIN_EXTERN_C struct switch_odbc_handle;
|
SWITCH_BEGIN_EXTERN_C
|
||||||
|
|
||||||
|
struct switch_odbc_handle;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
SWITCH_ODBC_STATE_INIT,
|
SWITCH_ODBC_STATE_INIT,
|
||||||
@ -59,7 +61,7 @@ typedef enum {
|
|||||||
SWITCH_ODBC_FAIL = -1
|
SWITCH_ODBC_FAIL = -1
|
||||||
} switch_odbc_status_t;
|
} switch_odbc_status_t;
|
||||||
|
|
||||||
SWITCH_DECLARE(switch_odbc_handle_t) * switch_odbc_handle_new(char *dsn, char *username, char *password);
|
SWITCH_DECLARE(switch_odbc_handle_t *) switch_odbc_handle_new(char *dsn, char *username, char *password);
|
||||||
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_disconnect(switch_odbc_handle_t *handle);
|
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_disconnect(switch_odbc_handle_t *handle);
|
||||||
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_connect(switch_odbc_handle_t *handle);
|
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_connect(switch_odbc_handle_t *handle);
|
||||||
SWITCH_DECLARE(void) switch_odbc_handle_destroy(switch_odbc_handle_t **handlep);
|
SWITCH_DECLARE(void) switch_odbc_handle_destroy(switch_odbc_handle_t **handlep);
|
||||||
@ -69,6 +71,7 @@ SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_callback_exec(switch_odb
|
|||||||
char *sql, switch_core_db_callback_func_t callback, void *pdata);
|
char *sql, switch_core_db_callback_func_t callback, void *pdata);
|
||||||
SWITCH_DECLARE(char *) switch_odbc_handle_get_error(switch_odbc_handle_t *handle, SQLHSTMT stmt);
|
SWITCH_DECLARE(char *) switch_odbc_handle_get_error(switch_odbc_handle_t *handle, SQLHSTMT stmt);
|
||||||
SWITCH_END_EXTERN_C
|
SWITCH_END_EXTERN_C
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
/* For Emacs:
|
/* For Emacs:
|
||||||
* Local Variables:
|
* Local Variables:
|
||||||
|
@ -59,6 +59,12 @@ SWITCH_BEGIN_EXTERN_C
|
|||||||
*/
|
*/
|
||||||
#pragma warning(disable:4100 4200 4204 4706 4819 4132 4510 4512 4610 4996)
|
#pragma warning(disable:4100 4200 4204 4706 4819 4132 4510 4512 4610 4996)
|
||||||
|
|
||||||
|
#define SWITCH_HAVE_ODBC 1
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
# pragma comment(lib, "odbc32.lib")
|
||||||
|
#endif
|
||||||
|
|
||||||
#pragma include_alias(<libteletone.h>, <../../libs/libteletone/src/libteletone.h>)
|
#pragma include_alias(<libteletone.h>, <../../libs/libteletone/src/libteletone.h>)
|
||||||
#pragma include_alias(<libteletone_generate.h>, <../../libs/libteletone/src/libteletone_generate.h>)
|
#pragma include_alias(<libteletone_generate.h>, <../../libs/libteletone/src/libteletone_generate.h>)
|
||||||
#pragma include_alias(<libteletone_detect.h>, <../../libs/libteletone/src/libteletone_detect.h>)
|
#pragma include_alias(<libteletone_detect.h>, <../../libs/libteletone/src/libteletone_detect.h>)
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
* switch_odbc.c -- ODBC
|
* switch_odbc.c -- ODBC
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#include <switch.h>
|
||||||
#include <switch_odbc.h>
|
#include <switch_odbc.h>
|
||||||
|
|
||||||
struct switch_odbc_handle {
|
struct switch_odbc_handle {
|
||||||
@ -162,7 +163,6 @@ SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_connect(switch_odbc_hand
|
|||||||
return SWITCH_ODBC_SUCCESS;
|
return SWITCH_ODBC_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
return SWITCH_ODBC_FAIL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int db_is_up(switch_odbc_handle_t *handle)
|
static int db_is_up(switch_odbc_handle_t *handle)
|
||||||
@ -227,7 +227,7 @@ static int db_is_up(switch_odbc_handle_t *handle)
|
|||||||
|
|
||||||
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_exec(switch_odbc_handle_t *handle, char *sql, SQLHSTMT *rstmt)
|
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_exec(switch_odbc_handle_t *handle, char *sql, SQLHSTMT *rstmt)
|
||||||
{
|
{
|
||||||
SQLHSTMT stmt;
|
SQLHSTMT stmt = NULL;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
if (!db_is_up(handle)) {
|
if (!db_is_up(handle)) {
|
||||||
@ -270,7 +270,7 @@ SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_exec(switch_odbc_handle_
|
|||||||
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_callback_exec(switch_odbc_handle_t *handle,
|
SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_callback_exec(switch_odbc_handle_t *handle,
|
||||||
char *sql, switch_core_db_callback_func_t callback, void *pdata)
|
char *sql, switch_core_db_callback_func_t callback, void *pdata)
|
||||||
{
|
{
|
||||||
SQLHSTMT stmt;
|
SQLHSTMT stmt = NULL;
|
||||||
SQLSMALLINT c = 0, x = 0;
|
SQLSMALLINT c = 0, x = 0;
|
||||||
SQLINTEGER m = 0;
|
SQLINTEGER m = 0;
|
||||||
int result;
|
int result;
|
||||||
@ -320,7 +320,7 @@ SWITCH_DECLARE(switch_odbc_status_t) switch_odbc_handle_callback_exec(switch_odb
|
|||||||
names[y] = malloc(name_len);
|
names[y] = malloc(name_len);
|
||||||
memset(names[y], 0, name_len);
|
memset(names[y], 0, name_len);
|
||||||
|
|
||||||
SQLDescribeCol(stmt, x, (SQLCHAR *) names[y], name_len, &NameLength, &DataType, &ColumnSize, &DecimalDigits, &Nullable);
|
SQLDescribeCol(stmt, x, (SQLCHAR *) names[y], (SQLSMALLINT)name_len, &NameLength, &DataType, &ColumnSize, &DecimalDigits, &Nullable);
|
||||||
ColumnSize++;
|
ColumnSize++;
|
||||||
|
|
||||||
vals[y] = malloc(ColumnSize);
|
vals[y] = malloc(ColumnSize);
|
||||||
|
@ -351,6 +351,10 @@
|
|||||||
RelativePath="..\..\src\switch_log.c"
|
RelativePath="..\..\src\switch_log.c"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\switch_odbc.c"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\src\switch_regex.c"
|
RelativePath="..\..\src\switch_regex.c"
|
||||||
>
|
>
|
||||||
@ -418,11 +422,11 @@
|
|||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\src\include\switch_core.h"
|
RelativePath="..\..\src\include\private\switch_core.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\src\include\private\switch_core.h"
|
RelativePath="..\..\src\include\switch_core.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
@ -457,6 +461,10 @@
|
|||||||
RelativePath="..\..\src\include\switch_module_interfaces.h"
|
RelativePath="..\..\src\include\switch_module_interfaces.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\include\switch_odbc.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\..\src\include\switch_platform.h"
|
RelativePath="..\..\src\include\switch_platform.h"
|
||||||
>
|
>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user