Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/zabbix_server/odbc/odbc.c')
-rw-r--r--src/zabbix_server/odbc/odbc.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/zabbix_server/odbc/odbc.c b/src/zabbix_server/odbc/odbc.c
index a4ebd87dd26..a95d7149e30 100644
--- a/src/zabbix_server/odbc/odbc.c
+++ b/src/zabbix_server/odbc/odbc.c
@@ -48,8 +48,6 @@ struct zbx_odbc_query_result
/******************************************************************************
* *
- * Function: zbx_odbc_rc_str *
- * *
* Purpose: get human readable representation of ODBC return code *
* *
* Parameters: rc - [IN] ODBC return code *
@@ -83,8 +81,6 @@ static const char *zbx_odbc_rc_str(SQLRETURN rc)
/******************************************************************************
* *
- * Function: zbx_odbc_diag *
- * *
* Purpose: diagnose result of ODBC function call *
* *
* Parameters: h_type - [IN] type of handle call was executed on *
@@ -149,8 +145,6 @@ static int zbx_odbc_diag(SQLSMALLINT h_type, SQLHANDLE h, SQLRETURN rc, char **d
/******************************************************************************
* *
- * Function: zbx_log_odbc_connection_info *
- * *
* Purpose: log details upon successful connection on behalf of caller *
* *
* Parameters: function - [IN] caller function name *
@@ -205,8 +199,6 @@ static void zbx_log_odbc_connection_info(const char *function, SQLHDBC hdbc)
/******************************************************************************
* *
- * Function: zbx_odbc_connection_string_append *
- * *
* Purpose: Appends a new argument to ODBC connection string. *
* Connection string is reallocated to fit new value. *
* *
@@ -232,8 +224,6 @@ static void zbx_odbc_connection_string_append(char **connection_str, const char
/******************************************************************************
* *
- * Function: zbx_odbc_connect *
- * *
* Purpose: connect to ODBC data source *
* *
* Parameters: dsn - [IN] data source name *
@@ -344,8 +334,6 @@ out:
/******************************************************************************
* *
- * Function: zbx_odbc_data_source_free *
- * *
* Purpose: free resources allocated by successful zbx_odbc_connect() call *
* *
* Parameters: data_source - [IN] pointer to data source structure *
@@ -364,8 +352,6 @@ void zbx_odbc_data_source_free(zbx_odbc_data_source_t *data_source)
/******************************************************************************
* *
- * Function: zbx_odbc_select *
- * *
* Purpose: execute a query to ODBC data source *
* *
* Parameters: data_source - [IN] pointer to data source structure *
@@ -444,8 +430,6 @@ out:
/******************************************************************************
* *
- * Function: zbx_odbc_query_result_free *
- * *
* Purpose: free resources allocated by successful zbx_odbc_select() call *
* *
* Parameters: query_result - [IN] pointer to query result structure *
@@ -469,8 +453,6 @@ void zbx_odbc_query_result_free(zbx_odbc_query_result_t *query_result)
/******************************************************************************
* *
- * Function: zbx_odbc_fetch *
- * *
* Purpose: fetch single row of ODBC query result *
* *
* Parameters: query_result - [IN] pointer to query result structure *
@@ -549,8 +531,6 @@ out:
/******************************************************************************
* *
- * Function: zbx_odbc_query_result_to_string *
- * *
* Purpose: extract the first column of the first row of ODBC SQL query *
* *
* Parameters: query_result - [IN] result of SQL query *
@@ -594,8 +574,6 @@ int zbx_odbc_query_result_to_string(zbx_odbc_query_result_t *query_result, char
/******************************************************************************
* *
- * Function: odbc_query_result_to_json *
- * *
* Purpose: convert ODBC SQL query result into JSON *
* *
* Parameters: query_result - [IN] result of SQL query *
@@ -717,8 +695,6 @@ out:
/******************************************************************************
* *
- * Function: zbx_odbc_query_result_to_lld_json *
- * *
* Purpose: public wrapper for odbc_query_result_to_json *
* *
*****************************************************************************/
@@ -729,8 +705,6 @@ int zbx_odbc_query_result_to_lld_json(zbx_odbc_query_result_t *query_result, cha
/******************************************************************************
* *
- * Function: zbx_odbc_query_result_to_json *
- * *
* Purpose: public wrapper for odbc_query_result_to_json *
* *
*****************************************************************************/