C/C++ Client Library
C/C++ developers can use the TDengine client driver, i.e., the C/C++ connector (hereinafter referred to as the TDengine client driver), to develop their own applications to connect to the TDengine cluster for data storage, querying, and other functionalities. The API of the TDengine client driver is similar to MySQL's C API. When using the application, it is necessary to include the TDengine header file, which lists the function prototypes of the provided APIs; the application also needs to link to the corresponding dynamic library on the platform.
TDengine's client driver provides two dynamic libraries, taosws and taos, which support WebSocket connections and native connections, respectively. The difference between WebSocket connections and native connections is that WebSocket connections do not require the client and server versions to completely match, while native connections do, and in terms of performance, WebSocket connections are also close to native connections. Generally, we recommend using WebSocket connections.
Below, we will introduce the usage methods of the two connection types separately.
WebSocket Connection Method
The WebSocket connection method requires using the taosws.h header file and the taosws dynamic library.
#include <taosws.h>
After installing the TDengine server or client, taosws.h
is located at:
- Linux:
/usr/local/taos/include
- Windows:
C:\TDengine\include
- macOS:
/usr/local/include
The dynamic library of the TDengine client driver is located at:
- Linux:
/usr/local/taos/driver/libtaosws.so
- Windows:
C:\TDengine\driver\taosws.dll
- macOS:
/usr/local/lib/libtaosws.dylib
Supported Platforms
Please refer to the Supported Platforms List
Version History
TDengine Client Version | Main Changes | TDengine Version |
---|---|---|
3.3.3.0 | First release, providing comprehensive support for SQL execution, parameter binding, schema-less writing, and data subscription. | 3.3.2.0 and higher versions |
Error Codes
In the design of the C interface, error codes are represented by integer types, each corresponding to a specific error state. Unless otherwise specified, when the API's return value is an integer, 0 represents success, and others represent failure reasons; when the return value is a pointer, NULL indicates failure.
WebSocket connection method-specific error codes are in taosws.h
,
Error Code | Error Description | Possible Error Scenarios or Reasons | Recommended User Actions |
---|---|---|---|
0xE000 | DSN Error | DSN does not meet specifications | Check if the DSN string meets specifications |
0xE001 | Internal Error | Uncertain | Preserve the scene and logs, report issue on GitHub |
0xE002 | Connection Closed | Network disconnected | Please check the network condition, review taosadapter logs. |
0xE003 | Send Timeout | Network disconnected | Please check the network condition |
0xE004 | Receive Timeout | Slow query, or network disconnected | Investigate taosadapter logs |
For other error codes, please refer to the taoserror.h
file in the same directory, and for a detailed explanation of native connection error codes, refer to: Error Codes.
WebSocket connection method error codes only retain the last two bytes of the native connection error codes.
Example Program
This section shows example code for common access methods using the client driver to access the TDengine cluster.
-
Synchronous query example: Synchronous Query
-
Parameter Binding Example: Parameter Binding
-
Schema-less Insert Example: Schema-less Insert
-
Subscription and Consumption Example: Subscription and Consumption
For more example codes and downloads, see GitHub.
API Reference
The following sections describe the DSN, Basic API, Synchronous Query API, Parameter Binding API, Schema-less Writing API, and Data Subscription API of the TDengine client driver.
DSN
The C/C++ WebSocket connector uses a DSN (Data Source Name) connection description string to represent connection information. The basic structure of a DSN description string is as follows:
<driver>[+<protocol>]://[[<username>:<password>@]<host>:<port>][/<database>][?<p1>=<v1>[&<p2>=<v2>]]
|------|------------|---|-----------|-----------|------|------|------------|-----------------------|
|driver| protocol | | username | password | host | port | database | params |
The meanings of each part are as follows:
-
driver: Must specify a driver name so the connector can choose how to create a connection, supported driver names include:
- taos: Default driver, supports SQL execution, parameter binding, schema-less writing.
- tmq: Use TMQ to subscribe to data.
-
protocol: Explicitly specify how to establish a connection, for example:
taos+ws://localhost:6041
specifies establishing a connection via WebSocket.- http/ws: Use WebSocket protocol.
- https/wss: Explicitly enable SSL/TLS protocol under WebSocket connection.
-
username/password: Username and password used to create the connection.
-
host/port: Specifies the server and port for creating the connection. If the server address and port are not specified, the default WebSocket connection is
localhost:6041
. -
database: Specifies the default database name to connect to, optional parameter.
-
params: Other optional parameters.
A complete DSN description string example: taos+ws://localhost:6041/test
, indicates using WebSocket (ws
) to connect to the server localhost
through port 6041
, specifying the default database as test
.
Basic API
The Basic API is used to create database connections and other tasks, providing a runtime environment for the execution of other APIs.
-
char *ws_get_client_info()
- Interface Description: Get client version information.
- Return Value: Returns client version information.
-
WS_TAOS *ws_connect(const char *dsn)
- Interface Description: Create a database connection, initialize the connection context.
- Parameter Description:
- dsn: [Input] Connection information, see the DSN section above.
- Return Value: Returns the database connection, a null return value indicates failure. The application needs to save the returned parameter for subsequent use.
infoThe same process can connect to multiple TDengine clusters based on different dsns
-
const char *ws_get_server_info(WS_TAOS *taos)
- Interface Description: Get server version information.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns the server version information.
-
int32_t ws_select_db(WS_TAOS *taos, const char *db)
- Interface Description: Sets the current default database to
db
. - Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function. - db: [Input] Database name.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value:
0
: Success, non-0
: Failure, please refer to the error code page.
- Interface Description: Sets the current default database to
-
int32_t ws_get_current_db(WS_TAOS *taos, char *database, int len, int *required)
- Interface Description: Gets the current database name.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function. - database: [Output] Stores the current database name.
- len: [Input] The size of the space for the database.
- required: [Output] Stores the space required for the current database name (including the final '\0').
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value:
0
: Success,-1
: Failure, you can call the function ws_errstr(NULL) for more detailed error information.- If database == NULL or len <= 0, return failure.
- If len is less than the space required to store the database name (including the final '\0'), return failure, and the data in the database is truncated and ends with '\0'.
- If len is greater than or equal to the space required to store the database name (including the final '\0'), return success, and the database name ends with '\0' in the database.
-
int32_t ws_close(WS_TAOS *taos);
- Interface Description: Closes the connection.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value:
0
: Success, non-0
: Failure, please refer to the error code page.
Synchronous Queries
This section introduces APIs that are all synchronous interfaces. When called by the application, it will block and wait for a response until a result or error information is obtained.
-
WS_RES *ws_query(WS_TAOS *taos, const char *sql)
- Interface Description: Executes an SQL statement, which can be a DQL, DML, or DDL statement.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function. - sql: [Input] SQL statement to be executed.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: The result cannot be determined by whether the return value is
NULL
; instead, thews_errno()
function must be called to parse the error code in the result set.- ws_errno return value:
0
: Success,-1
: Failure, details please call ws_errstr function for error hints.
- ws_errno return value:
-
int32_t ws_result_precision(const WS_RES *rs)
- Interface Description: Returns the precision category of the timestamp field in the result set.
- Parameter Description:
- res: [Input] Result set.
- Return Value:
0
: Milliseconds,1
: Microseconds,2
: Nanoseconds.
-
WS_ROW ws_fetch_row(WS_RES *rs)
- Interface Description: Retrieves data from the result set row by row.
- Parameter Description:
- res: [Input] Result set.
- Return Value: Non-
NULL
: Success,NULL
: Failure, you can call the function ws_errstr(NULL) for more detailed error information.
-
int32_t ws_fetch_raw_block(WS_RES *rs, const void **pData, int32_t *numOfRows)
- Interface Description: Batch retrieves data from the result set.
- Parameter Description:
- res: [Input] Result set.
- pData: [Output] Used to store a data block retrieved from the result set.
- numOfRows: [Output] Used to store the number of rows included in the data block retrieved from the result set.
- Return Value:
0
: Success, non-0
: Failure, please refer to the error code page.
-
int32_t ws_num_fields(const WS_RES *rs)
andint32_t ws_field_count(const WS_RES *rs)
- Interface Description: These two APIs are equivalent, used to get the number of columns in the result set.
- Parameter Description:
- res: [Input] Result set.
- Return Value: The return value is the number of columns in the result set.
-
int32_t ws_affected_rows(const WS_RES *rs)
- Interface Description: Get the number of rows affected by the executed SQL statement.
- Parameter Description:
- res: [Input] Result set.
- Return Value: The return value represents the number of affected rows.
-
int64_t ws_affected_rows64(const WS_RES *rs)
- Interface Description: Get the number of rows affected by the executed SQL statement.
- Parameter Description:
- res: [Input] Result set.
- Return Value: The return value represents the number of affected rows.
-
const struct WS_FIELD *ws_fetch_fields(WS_RES *rs)
- Interface Description: Get the attributes of each column in the query result set (column name, data type, column length), used in conjunction with
ws_num_fields()
, can be used to parse the tuple (row) of data returned byws_fetch_row()
. - Parameter Description:
- res: [Input] Result set.
- Return Value: Non-
NULL
: Success, returns a pointer to a WS_FIELD structure, each element representing the metadata of a column.NULL
: Failure.
- Interface Description: Get the attributes of each column in the query result set (column name, data type, column length), used in conjunction with
-
int32_t ws_stop_query(WS_RES *rs)
- Interface Description: Stop the execution of the current query.
- Parameter Description:
- res: [Input] Result set.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
-
int32_t ws_free_result(WS_RES *rs)
- Interface Description: Release the query result set and related resources. After completing the query, it is imperative to call this API to release resources, otherwise, it may lead to memory leaks in the application. However, it should also be noted that if functions like
ws_fetch_fields()
are called to obtain query results after releasing resources, it will cause the application to crash. - Parameter Description:
- res: [Input] Result set.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: Release the query result set and related resources. After completing the query, it is imperative to call this API to release resources, otherwise, it may lead to memory leaks in the application. However, it should also be noted that if functions like
-
const char *ws_errstr(WS_RES *rs)
- Interface Description: Get the reason for the failure of the last API call, the return value is a string indicating the error message.
- Parameter Description:
- res: [Input] Result set.
- Return Value: String indicating the error message.
-
int32_t ws_errno(WS_RES *rs)
- Interface Description: Get the error code for the failure of the last API call.
- Parameter Description:
- res: [Input] Result set.
- Return Value: Error code.
TDengine recommends that each thread in a database application establish an independent connection or establish a connection pool based on the thread. Do not pass the connection (WS_TAOS*) structure in the application to different threads for shared use. Another point to note is that during the execution of the above synchronous APIs, APIs like pthread_cancel should not be used to forcibly end the thread, as it involves some modules' synchronization operations, and forcibly ending the thread may cause exceptions including but not limited to deadlocks.
Parameter Binding
In addition to directly calling ws_query()
to write data by executing SQL, TDengine also provides a Prepare API that supports parameter binding, similar in style to MySQL, and currently only supports using the question mark ?
to represent parameters to be bound.
When writing data through the parameter binding interface, it can avoid the resource consumption of SQL syntax parsing, thereby significantly improving the writing performance in most cases. The typical operation steps at this time are as follows:
- Call
ws_stmt_init()
to create a parameter binding object; - Call
ws_stmt_prepare()
to parse the INSERT statement; - If the INSERT statement reserves the table name but not the TAGS, then call
ws_stmt_set_tbname()
to set the table name; - If the INSERT statement reserves both the table name and TAGS (for example, the INSERT statement adopts the method of automatic table creation), then call
ws_stmt_set_tbname_tags()
to set the values of the table name and TAGS; - Call
ws_stmt_bind_param_batch()
to set the VALUES values in a multi-row manner; - Call
ws_stmt_add_batch()
to add the currently bound parameters to the batch processing; - Steps 3 to 6 can be repeated to add more data rows to the batch processing;
- Call
ws_stmt_execute()
to execute the prepared batch command; - After execution, call
ws_stmt_close()
to release all resources.
Note: If ws_stmt_execute()
is executed successfully and there is no need to change the SQL statement, the parsing result of ws_stmt_prepare()
can be reused, and steps 3 to 6 can be directly performed to bind new data. However, if an error occurs during execution, it is not recommended to continue working in the current context. Instead, it is advisable to release resources and start over from the ws_stmt_init()
step.
For related interfaces, refer to the specific functions below (you can also refer to the way these functions are used in the stmt_insert_demo.c file):
-
WS_STMT *ws_stmt_init(const WS_TAOS *taos)
- Interface Description: Initializes a precompiled SQL statement object.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Non-
NULL
: Success, returns a pointer to a WS_STMT structure representing the precompiled SQL statement object.NULL
: Failure, please call the ws_stmt_errstr() function for error details.
-
int ws_stmt_prepare(WS_STMT *stmt, const char *sql, unsigned long len)
- Interface Description: Parses a precompiled SQL statement and binds the parsing results and parameter information to stmt.
- Parameter Description:
- stmt: [Input] Pointer to a valid precompiled SQL statement object.
- sql: [Input] SQL statement to be parsed.
- len: [Input] Length of the sql parameter. If len is greater than 0, this parameter will be used as the length of the SQL statement; if it is 0, the length of the SQL statement will be automatically determined.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
-
int ws_stmt_bind_param_batch(WS_STMT *stmt, const WS_MULTI_BIND *bind, uint32_t len)
- Interface Description: Passes the data to be bound in a multi-column manner, ensuring that the order and number of data columns passed here are completely consistent with the VALUES parameters in the SQL statement.
- Parameter Description:
- stmt: [Input] Pointer to a valid precompiled SQL statement object.
- bind: [Input] Pointer to a valid WS_MULTI_BIND structure, which contains the list of parameters to be batch bound to the SQL statement.
- len: [Input] Number of elements in the bind array.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
-
int ws_stmt_set_tbname(WS_STMT *stmt, const char *name)
- Interface Description: (Only supports replacing parameter values in INSERT statements) When the table name in the SQL statement uses a
?
placeholder, this function can be used to bind a specific table name. - Parameter Description:
- stmt: [Input] Pointer to a valid precompiled SQL statement object.
- name: [Input] Pointer to a string constant containing the subtable name.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: (Only supports replacing parameter values in INSERT statements) When the table name in the SQL statement uses a
-
int ws_stmt_set_tbname_tags(WS_STMT *stmt, const char *name, const WS_MULTI_BIND *bind, uint32_t len);
- Interface Description: (Only supports replacing parameter values in INSERT statements) When both the table name and TAGS in the SQL statement use a
?
placeholder, this function can be used to bind specific table names and specific TAGS values. The most typical scenario is the use of the auto-table creation feature in INSERT statements (the current version does not support specifying specific TAGS columns). The number of columns in the TAGS parameter must be completely consistent with the number of TAGS required by the SQL statement. - Parameter Description:
- stmt: [Input] Pointer to a valid precompiled SQL statement object.
- name: [Input] Pointer to a string constant containing the subtable name.
- tags: [Input] Pointer to a valid WS_MULTI_BIND structure, which contains the values of the subtable tags.
- len: [Input] Number of elements in the bind array.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: (Only supports replacing parameter values in INSERT statements) When both the table name and TAGS in the SQL statement use a
-
int ws_stmt_add_batch(WS_STMT *stmt)
- Interface Description: Adds the currently bound parameters to the batch. After calling this function, you can bind new parameters by calling
ws_stmt_bind_param_batch()
again. Note that this function only supports INSERT/IMPORT statements. If other SQL statements like SELECT are used, an error will be returned.- stmt: [Input] Points to a valid pointer of a precompiled SQL statement object.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page.
- Interface Description: Adds the currently bound parameters to the batch. After calling this function, you can bind new parameters by calling
-
int ws_stmt_execute(WS_STMT *stmt, int32_t *affected_rows)
- Interface Description: Executes the prepared statement. Currently, a statement can only be executed once.
- stmt: [Input] Points to a valid pointer of a precompiled SQL statement object.
- affected_rows: [Output] Number of rows successfully written.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page.
- Interface Description: Executes the prepared statement. Currently, a statement can only be executed once.
-
int ws_stmt_affected_rows(WS_STMT *stmt)
- Interface Description: Gets the number of rows affected after executing the precompiled SQL statement.
- stmt: [Input] Points to a valid pointer of a precompiled SQL statement object.
- Return Value: Returns the number of affected rows.
- Interface Description: Gets the number of rows affected after executing the precompiled SQL statement.
-
int ws_stmt_affected_rows_once(WS_STMT *stmt)
- Interface Description: Gets the number of rows affected by executing a bound statement once.
- stmt: [Input] Points to a valid pointer of a precompiled SQL statement object.
- Return Value: Returns the number of affected rows.
- Interface Description: Gets the number of rows affected by executing a bound statement once.
-
int32_t ws_stmt_close(WS_STMT *stmt)
- Interface Description: After execution, releases all resources.
- stmt: [Input] Points to a valid pointer of a precompiled SQL statement object.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page.
- Interface Description: After execution, releases all resources.
-
const char *ws_stmt_errstr(WS_STMT *stmt)
- Interface Description: Used to obtain error information when other STMT APIs return an error (return error code or null pointer).
- stmt: [Input] Points to a valid pointer of a precompiled SQL statement object.
- Return Value: Returns a pointer to a string containing error information.
- Interface Description: Used to obtain error information when other STMT APIs return an error (return error code or null pointer).
Schemaless Writing
In addition to using SQL or parameter binding APIs to write data, you can also use Schemaless methods to write data. Schemaless allows you to write data without having to pre-create the structure of supertables/subtables. TDengine will automatically create and maintain the required table structure based on the data written. For more details on using Schemaless, see the Schemaless Writing section. Here, we introduce the accompanying C/C++ API.
WS_RES *ws_schemaless_insert_raw(WS_TAOS *taos, const char *lines, int len, int32_t *totalRows, int protocol, int precision)
- Interface Description: Performs a schemaless batch insertion operation, writing line protocol text data into TDengine. The data is represented by the pointer lines and its length len, to address issues where the original interface data is truncated due to containing '\0'.
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet parsing format requirements.
- len: [Input] Total length (in bytes) of the data buffer lines.
- totalRows: [Output] Points to an integer pointer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Timestamp precision string in the text data.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a WS_RES structure containing the results of the insertion operation. Applications can obtain error information using
ws_errstr()
or get the error code usingws_errno()
. In some cases, the returned WS_RES may beNULL
, in which casews_errno()
can still be safely called to obtain the error code. The returned WS_RES must be managed by the caller to avoid memory leaks.
- Interface Description: Performs a schemaless batch insertion operation, writing line protocol text data into TDengine. The data is represented by the pointer lines and its length len, to address issues where the original interface data is truncated due to containing '\0'.
Description The protocol type is an enumeration type, including the following three formats:
- WS_TSDB_SML_LINE_PROTOCOL: InfluxDB Line Protocol
- WS_TSDB_SML_TELNET_PROTOCOL: OpenTSDB Telnet Text Line Protocol
- WS_TSDB_SML_JSON_PROTOCOL: OpenTSDB Json Protocol Format
The definition of timestamp resolution is defined in the taosws.h
file, with details as follows:
- WS_TSDB_SML_TIMESTAMP_NOT_CONFIGURED = 0,
- WS_TSDB_SML_TIMESTAMP_HOURS,
- WS_TSDB_SML_TIMESTAMP_MINUTES,
- WS_TSDB_SML_TIMESTAMP_SECONDS,
- WS_TSDB_SML_TIMESTAMP_MILLI_SECONDS,
- WS_TSDB_SML_TIMESTAMP_MICRO_SECONDS,
- WS_TSDB_SML_TIMESTAMP_NANO_SECONDS
Note that the timestamp resolution parameter is only effective when the protocol type is WS_SML_LINE_PROTOCOL
.
For the OpenTSDB text protocol, the parsing of timestamps follows its official parsing rules — determined by the number of characters contained in the timestamp.
Other related schemaless interfaces
-
WS_RES *ws_schemaless_insert_raw_with_reqid(WS_TAOS *taos, const char *lines, int len, int32_t *totalRows, int protocol, int precision, uint64_t reqid)
- Interface Description: Performs a batch insert operation without a schema, writing text data in line protocol format into TDengine. Data is represented by the lines pointer and length len to address the issue of data being truncated due to containing '\0'. The reqid parameter is passed to track the entire function call chain.
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet the parsing format requirements.
- len: [Input] Total length of the data buffer lines (in bytes).
- totalRows: [Output] Pointer to an integer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Precision of the timestamps in the text data.
- reqid: [Input] Specified request ID, used to track the call request. The request ID (reqid) can be used to establish a correlation between requests and responses on the client and server sides, which is very useful for tracking and debugging in distributed systems.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a WS_RES structure containing the results of the insert operation. Applications can obtain error information using
ws_errstr()
or get the error code usingws_errno()
. In some cases, the returned WS_RES may beNULL
, in which casews_errno()
can still be safely called to obtain error code information. The returned WS_RES must be managed by the caller to prevent memory leaks.
- Interface Description: Performs a batch insert operation without a schema, writing text data in line protocol format into TDengine. Data is represented by the lines pointer and length len to address the issue of data being truncated due to containing '\0'. The reqid parameter is passed to track the entire function call chain.
-
WS_RES *ws_schemaless_insert_raw_ttl(WS_TAOS *taos, const char *lines, int len, int32_t *totalRows, int protocol, int precision, int ttl)
- Interface Description: Performs a batch insert operation without a schema, writing text data in line protocol format into TDengine. Data is represented by the lines pointer and length len to address the issue of data being truncated due to containing '\0'. The ttl parameter is passed to control the TTL expiration time for table creation.
- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet the parsing format requirements.
- len: [Input] Total length of the data buffer lines (in bytes).
- totalRows: [Output] Pointer to an integer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Precision of the timestamps in the text data.
- ttl: [Input] Specified lifespan (TTL), in days. Records will be automatically deleted after exceeding this lifespan.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a WS_RES structure containing the results of the insert operation. Applications can obtain error information using
ws_errstr()
or get the error code usingws_errno()
. In some cases, the returned WS_RES may beNULL
, in which casews_errno()
can still be safely called to obtain error code information. The returned WS_RES must be managed by the caller to prevent memory leaks.
- Interface Description: Performs a batch insert operation without a schema, writing text data in line protocol format into TDengine. Data is represented by the lines pointer and length len to address the issue of data being truncated due to containing '\0'. The ttl parameter is passed to control the TTL expiration time for table creation.
-
WS_RES *ws_schemaless_insert_raw_ttl_with_reqid(WS_TAOS *taos, const char *lines, int len, int32_t *totalRows, int protocal, int precision, int ttl, uint64_t reqid)
- Interface Description: Executes a batch insert operation without a schema, writing text data in line protocol to TDengine. Data is represented by the
lines
pointer and its lengthlen
, addressing the issue of data being truncated due to containing '\0'. Thettl
parameter controls the TTL expiration time for table creation. Thereqid
parameter is used to track the entire function call chain.- taos: [Input] Pointer to the database connection, which is established through the
ws_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet parsing format requirements.
- len: [Input] Total length of the data buffer
lines
(in bytes). - totalRows: [Output] Points to an integer pointer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Timestamp precision string in the text data.
- ttl: [Input] Specified Time to Live (TTL), in days. Records will be automatically deleted after exceeding this lifespan.
- reqid: [Input] Specified request ID, used for tracking the call request. The request ID (
reqid
) can be used to establish a correlation between requests and responses on the client and server sides, which is very useful for tracking and debugging in distributed systems.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a WS_RES structure containing the results of the insert operation. Errors can be obtained using
ws_errstr()
, and error codes usingws_errno()
. In some cases, the returned WS_RES may beNULL
, in which casews_errno()
can still be safely called to obtain error code information. The returned WS_RES must be freed by the caller to avoid memory leaks.
Notes
- The above three interfaces are extended interfaces, mainly used for passing
ttl
andreqid
parameters during schemaless writes, and can be used as needed. - Interfaces with
ttl
can pass thettl
parameter to control the TTL expiration time for table creation. - Interfaces with
reqid
can track the entire call chain by passing thereqid
parameter.
- Interface Description: Executes a batch insert operation without a schema, writing text data in line protocol to TDengine. Data is represented by the
Data Subscription
-
const char *ws_tmq_errstr(ws_tmq_t *tmq)
- Interface Description: Used to obtain error information for data subscriptions.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, representing a TMQ consumer object.
- Return Value: Returns a pointer to a string containing error information, the return value is non-NULL, but the error information may be an empty string.
- Interface Description: Used to obtain error information for data subscriptions.
-
ws_tmq_conf_t *ws_tmq_conf_new(void);
- Interface Description: Creates a new TMQ configuration object.
- Return Value: Non-
NULL
: Success, returns a pointer to a ws_tmq_conf_t structure, which is used to configure the behavior and characteristics of TMQ.NULL
: Failure, detailed error information can be obtained by callingws_errstr(NULL)
.
-
enum ws_tmq_conf_res_t ws_tmq_conf_set(ws_tmq_conf_t *conf, const char *key, const char *value)
- Interface Description: Sets configuration items in a TMQ configuration object, used to configure consumption parameters.
- conf: [Input] Points to a valid ws_tmq_conf_t structure pointer, representing a TMQ configuration object.
- key: [Input] Configuration item key name.
- value: [Input] Configuration item value.
- Return Value: Returns a ws_tmq_conf_res_t enumeration value, indicating the result of the configuration setting.
- WS_TMQ_CONF_OK: Successfully set the configuration item.
- WS_TMQ_CONF_INVALID_KEY: Invalid key value.
- WS_TMQ_CONF_UNKNOWN: Invalid key name.
- Interface Description: Sets configuration items in a TMQ configuration object, used to configure consumption parameters.
-
int32_t ws_tmq_conf_destroy(ws_tmq_conf_t *conf)
- Interface Description: Destroys a TMQ configuration object and releases related resources.
- conf: [Input] A pointer to a valid ws_tmq_conf_t structure, representing a TMQ configuration object.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(NULL)
for more detailed error information.
- Interface Description: Destroys a TMQ configuration object and releases related resources.
-
ws_tmq_list_t *ws_tmq_list_new(void)
- Interface Description: Used to create a ws_tmq_list_t structure for storing subscribed topics.
- Return Value: Non-
NULL
: Success, returns a pointer to a ws_tmq_list_t structure.NULL
: Failure, you can call the functionws_tmq_errstr(NULL)
for more detailed error information.
-
int32_t ws_tmq_list_append(ws_tmq_list_t *list, const char *topic)
- Interface Description: Used to add a topic to a ws_tmq_list_t structure.
- list: [Input] A pointer to a valid ws_tmq_list_t structure, representing a TMQ list object.
- topic: [Input] Topic name.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(NULL)
for more detailed error information.
- Interface Description: Used to add a topic to a ws_tmq_list_t structure.
-
int32_t ws_tmq_list_destroy(ws_tmq_list_t *list);
- Interface Description: Used to destroy a ws_tmq_list_t structure, the result of ws_tmq_list_new needs to be destroyed through this interface.
- list: [Input] A pointer to a valid ws_tmq_list_t structure, representing a TMQ list object.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(NULL)
for more detailed error information.
- Interface Description: Used to destroy a ws_tmq_list_t structure, the result of ws_tmq_list_new needs to be destroyed through this interface.
-
int32_t ws_tmq_list_get_size(ws_tmq_list_t *list);
- Interface Description: Used to get the number of topics in a ws_tmq_list_t structure.
- list: [Input] A pointer to a valid ws_tmq_list_t structure, representing a TMQ list object.
- Return Value:
>=0
: Success, returns the number of topics in the ws_tmq_list_t structure.-1
: Failure, indicates that the input parameter list is NULL.
- Interface Description: Used to get the number of topics in a ws_tmq_list_t structure.
-
char **ws_tmq_list_to_c_array(const ws_tmq_list_t *list, uint32_t *topic_num);
- Interface Description: Used to convert a ws_tmq_list_t structure into a C array, each element of the array is a string pointer.
- list: [Input] A pointer to a valid ws_tmq_list_t structure, representing a TMQ list object.
- topic_num: [Input] The number of elements in the list.
- Return Value: Non-
NULL
: Successful, returns a C array, each element is a string pointer representing a topic name.NULL
: Failure, indicates that the input parameter list is NULL.
- Interface Description: Used to convert a ws_tmq_list_t structure into a C array, each element of the array is a string pointer.
-
ws_tmq_t *ws_tmq_consumer_new(ws_tmq_conf_t *conf, const char *dsn, char *errstr, int errstr_len)
- Interface Description: Used to create a ws_tmq_t structure for consuming data, after consuming data, call tmq_consumer_close to close the consumer.
- conf: [Input] A pointer to a valid ws_tmq_conf_t structure, representing a TMQ configuration object.
- dsn: [Input] DSN information string, for details refer to the DSN section above. A common valid dsn is "tmq+ws://root:taosdata@localhost:6041".
- errstr: [Output] A pointer to a valid character buffer, used to receive possible error information during creation. Memory allocation/release is the responsibility of the caller.
- errstrLen: [Input] Specifies the size of the errstr buffer (in bytes).
- Return Value: Non-
NULL
: Successful, returns a pointer to a ws_tmq_t structure, representing a TMQ consumer object.NULL
: Failure, error information stored in the errstr parameter.
- Interface Description: Used to create a ws_tmq_t structure for consuming data, after consuming data, call tmq_consumer_close to close the consumer.
-
int32_t ws_tmq_subscribe(ws_tmq_t *tmq, const ws_tmq_list_t *topic_list)
- Interface Description: Used to subscribe to a list of topics. After consuming the data, you need to call ws_tmq_subscribe to unsubscribe.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, which represents a TMQ consumer object.
- topic_list: [Input] Points to a valid ws_tmq_list_t structure pointer, which contains one or more topic names, currently only supports one topic name.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(tmq)
to get more detailed error information.
- Interface Description: Used to subscribe to a list of topics. After consuming the data, you need to call ws_tmq_subscribe to unsubscribe.
-
int32_t ws_tmq_unsubscribe(ws_tmq_t *tmq)
- Interface Description: Used to unsubscribe from the list of topics. Must be used in conjunction with ws_tmq_subscribe.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, which represents a TMQ consumer object.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(tmq)
to get more detailed error information.
- Interface Description: Used to unsubscribe from the list of topics. Must be used in conjunction with ws_tmq_subscribe.
-
WS_RES *ws_tmq_consumer_poll(ws_tmq_t *tmq, int64_t timeout)
- Interface Description: Used for polling to consume data. Each consumer can only call this interface in a single thread.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, which represents a TMQ consumer object.
- timeout: [Input] Polling timeout in milliseconds, a negative number indicates a default timeout of 1 second.
- Return Value: Non-
NULL
: Success, returns a pointer to a WS_RES structure, which contains the received message.NULL
: Failure, indicates no data. WS_RES results are consistent with taos_query results, and information in WS_RES can be obtained through various query interfaces, such as schema, etc.
- Interface Description: Used for polling to consume data. Each consumer can only call this interface in a single thread.
-
int32_t ws_tmq_consumer_close(ws_tmq_t *tmq)
- Interface Description: Used to close the ws_tmq_t structure. Must be used in conjunction with ws_tmq_consumer_new.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, which represents a TMQ consumer object.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(tmq)
to get more detailed error information.
- Interface Description: Used to close the ws_tmq_t structure. Must be used in conjunction with ws_tmq_consumer_new.
-
int32_t ws_tmq_get_topic_assignment(ws_tmq_t *tmq, const char *pTopicName, struct ws_tmq_topic_assignment **assignment, int32_t *numOfAssignment)
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, which represents a TMQ consumer object.
- pTopicName: [Input] The topic name for which to query the assignment information.
- assignment: [Output] Points to a pointer to a tmq_topic_assignment structure, used to receive assignment information. The data size is numOfAssignment, and it needs to be released through the tmq_free_assignment interface.
- numOfAssignment: [Output] Points to an integer pointer, used to receive the number of valid vgroups assigned to the consumer.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(tmq)
to get more detailed error information.
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
-
int32_t ws_tmq_free_assignment(struct ws_tmq_topic_assignment *pAssignment, int32_t numOfAssignment)
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
- pAssignment: [Input] Points to a valid ws_tmq_topic_assignment structure array pointer, which contains the vgroup assignment information.
- numOfAssignment: [Input] The number of elements in the array pointed to by pAssignment.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionws_tmq_errstr(tmq)
to get more detailed error information.
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
-
int64_t ws_tmq_committed(ws_tmq_t *tmq, const char *pTopicName, int32_t vgId)
- Interface Description: Gets the committed offset for a specific topic and vgroup for the TMQ consumer object.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The topic name for which the committed offset is queried.
- vgId: [Input] The ID of the vgroup.
- Return Value:
>=0
: Success, returns an int64_t value representing the committed offset.<0
: Failure, the return value is the error code, you can call the functionws_tmq_errstr(tmq)
for more detailed error information.
- Interface Description: Gets the committed offset for a specific topic and vgroup for the TMQ consumer object.
-
int32_t ws_tmq_commit_sync(ws_tmq_t *tmq, const WS_RES *rs)
- Interface Description: Synchronously commits the message offset processed by the TMQ consumer object.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, representing a TMQ consumer object.
- rs: [Input] Points to a valid WS_RES structure pointer, containing the processed messages. If NULL, commits the current progress of all vgroups consumed by the current consumer.
- Return Value:
0
: Success, the offset has been successfully committed. Non0
: Failure, you can call the functionws_tmq_errstr(tmq)
for more detailed error information.
- Interface Description: Synchronously commits the message offset processed by the TMQ consumer object.
-
int32_t ws_tmq_commit_offset_sync(ws_tmq_t *tmq, const char *pTopicName, int32_t vgId, int64_t offset)
- Interface Description: Synchronously commits the offset for a specific topic and vgroup for the TMQ consumer object.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The topic name for which the offset is to be committed.
- vgId: [Input] The ID of the virtual group vgroup.
- offset: [Input] The offset to be committed.
- Return Value:
0
: Success, the offset has been successfully committed. Non0
: Failure, you can call the functionws_tmq_errstr(tmq)
for more detailed error information.
- Interface Description: Synchronously commits the offset for a specific topic and vgroup for the TMQ consumer object.
-
int64_t ws_tmq_position(ws_tmq_t *tmq, const char *pTopicName, int32_t vgId)
- Interface Description: Gets the current consumption position, i.e., the next position of the data that has been consumed.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The topic name for which the current position is queried.
- vgId: [Input] The ID of the virtual group vgroup.
- Return Value:
>=0
: Success, returns an int64_t value representing the current position's offset.<0
: Failure, the return value is the error code, you can call the functionws_tmq_errstr(tmq)
for more detailed error information.
- Interface Description: Gets the current consumption position, i.e., the next position of the data that has been consumed.
-
int32_t ws_tmq_offset_seek(ws_tmq_t *tmq, const char *pTopicName, int32_t vgId, int64_t offset)
- Interface Description: Sets the offset for a specific topic and vgroup for the TMQ consumer object to a specified position.
- tmq: [Input] Points to a valid ws_tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The topic name for which the current position is queried.
- vgId: [Input] The ID of the virtual group vgroup.
- offset: [Input] The offset to be set.
- Return Value:
0
: Success, non0
: Failure, you can call the functionws_tmq_errstr(tmq)
for more detailed error information.
- Interface Description: Sets the offset for a specific topic and vgroup for the TMQ consumer object to a specified position.
-
int64_t ws_tmq_get_vgroup_offset(const WS_RES *rs)
- Interface Description: Extracts the current consumption data position's offset for the virtual group (vgroup) from the message results obtained by the TMQ consumer.
- res: [Input] Points to a valid WS_RES structure pointer, containing messages polled from the TMQ consumer.
- Return Value:
>=0
: Success, returns an int64_t value representing the current consumption position's offset.<0
: Failure, the return value is the error code, you can call the functionws_tmq_errstr(tmq)
for more detailed error information.
- Interface Description: Extracts the current consumption data position's offset for the virtual group (vgroup) from the message results obtained by the TMQ consumer.
-
int32_t ws_tmq_get_vgroup_id(const WS_RES *rs)
- Interface Description: Extracts the ID of the virtual group (vgroup) from the message result obtained by the TMQ consumer.
- res: [Input] Points to a valid WS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value:
>=0
: Success, returns an int32_t type value representing the ID of the virtual group (vgroup).<0
: Failure, the return value is the error code, you can call the functionws_tmq_errstr(tmq)
for more detailed error information.
- Interface Description: Extracts the ID of the virtual group (vgroup) from the message result obtained by the TMQ consumer.
-
const char *ws_tmq_get_table_name(const WS_RES *rs)
- Interface Description: Gets the table name from the message result obtained by the TMQ consumer.
- res: [Input] Points to a valid WS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Non-
NULL
: Success, returns a const char * type pointer pointing to the table name string.NULL
: Failure, invalid input parameters.
- Interface Description: Gets the table name from the message result obtained by the TMQ consumer.
-
enum ws_tmq_res_t ws_tmq_get_res_type(const WS_RES *rs)
- Interface Description: Gets the message type from the message result obtained by the TMQ consumer.
- res: [Input] Points to a valid WS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Returns a ws_tmq_res_t type enumeration value, representing the message type.
- ws_tmq_res_t represents the type of data consumed, defined as follows:
typedef enum ws_tmq_res_t {
WS_TMQ_RES_INVALID = -1, // Invalid
WS_TMQ_RES_DATA = 1, // Data type
WS_TMQ_RES_TABLE_META = 2, // Metadata type
WS_TMQ_RES_METADATA = 3 // Both metadata and data types, i.e., automatic table creation
} tmq_res_t; - Interface Description: Gets the message type from the message result obtained by the TMQ consumer.
-
const char *ws_tmq_get_topic_name(const WS_RES *rs)
- Interface Description: Gets the topic name from the message result obtained by the TMQ consumer.
- res: [Input] Points to a valid WS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Non-
NULL
: Success, returns a const char * type pointer pointing to the topic name string.NULL
: Failure, invalid input parameters.
- Interface Description: Gets the topic name from the message result obtained by the TMQ consumer.
-
const char *ws_tmq_get_db_name(const WS_RES *rs)
- Interface Description: Gets the database name from the message result obtained by the TMQ consumer.
- res: [Input] Points to a valid WS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Non-
NULL
: Success, returns a const char * type pointer pointing to the database name string.NULL
: Failure, invalid input parameters.
- Interface Description: Gets the database name from the message result obtained by the TMQ consumer.
Native Connection Method
The native connection method requires using the taos.h header file and the taos dynamic library.
#include <taos.h>
After installing the TDengine server or client, taos.h
is located at:
- Linux:
/usr/local/taos/include
- Windows:
C:\TDengine\include
- macOS:
/usr/local/include
The dynamic library of the TDengine client driver is located at:
- Linux:
/usr/local/taos/driver/libtaos.so
- Windows:
C:\TDengine\driver\taos.dll
- macOS:
/usr/local/lib/libtaos.dylib
Supported Platforms
Please refer to the list of supported platforms
Supported Versions
The version number of the TDengine client driver corresponds strongly to the version number of the TDengine server. It is recommended to use the client driver that is exactly the same as the TDengine server. Although a lower version of the client driver can be compatible with a higher version of the server if the first three segments of the version number match (only the fourth segment is different), this is not recommended. It is strongly advised against using a higher version of the client driver to access a lower version of the server.
Error Codes
In the design of the C interface, error codes are represented by integer types, with each error code corresponding to a specific error state. Unless otherwise specified, when the return value of an API is an integer, 0 represents success, and other values represent error codes indicating failure reasons. When the return value is a pointer, NULL indicates failure.
All error codes and their corresponding descriptions are listed in the taoserror.h
file.
For detailed explanations of error codes, refer to: Error Codes
Example Programs
This section showcases example code for common access methods to the TDengine cluster using the client driver.
-
Synchronous query example: Synchronous Query
-
Asynchronous query example: Asynchronous Query
-
Parameter binding example: Parameter Binding
-
Schemaless write example: Schemaless Write
-
Subscription and consumption example: Subscription and Consumption
For more example codes and downloads, please visit GitHub.
You can also find them in the examples/c
directory of the installation path. There is a makefile in this directory, and you can compile the executable files directly by executing make in a Linux/macOS environment.
Note: When compiling in an ARM environment, please remove -msse4.2
from the makefile, as this option is only supported on x64/x86 hardware platforms.
API Reference
The following sections introduce the basic API, synchronous API, asynchronous API, parameter binding API, schemaless write API, and data subscription API of the TDengine client driver.
Basic API
The basic API is used to establish database connections and provide a runtime environment for other APIs.
-
int taos_init()
- Interface Description: Initializes the runtime environment. If this API is not actively called, the driver will automatically call it when
taos_connect()
is invoked, so it is generally not necessary to call it manually. - Return Value:
0
: Success, non-0
: Failure, you can call the function taos_errstr(NULL) for more detailed error information.
- Interface Description: Initializes the runtime environment. If this API is not actively called, the driver will automatically call it when
-
void taos_cleanup()
- Interface Description: Cleans up the runtime environment, should be called before the application exits.
-
int taos_options(TSDB_OPTION option, const void * arg, ...)
- Interface Description: Sets client options, currently supports locale (
TSDB_OPTION_LOCALE
), character set (TSDB_OPTION_CHARSET
), timezone (TSDB_OPTION_TIMEZONE
), and configuration file path (TSDB_OPTION_CONFIGDIR
). Locale, character set, and timezone default to the current settings of the operating system. - Parameter Description:
option
: [Input] Setting item type.arg
: [Input] Setting item value.
- Return Value:
0
: Success,-1
: Failure.
- Interface Description: Sets client options, currently supports locale (
-
char *taos_get_client_info()
- Interface Description: Gets client version information.
- Return Value: Returns client version information.
-
TAOS *taos_connect(const char *ip, the char *user, the char *pass, the char *db, uint16_t port);
- Interface Description: Creates a database connection, initializes the connection context.
- Parameter Description:
- ip: [Input] FQDN of any node in the TDengine cluster.
- user: [Input] Username.
- pass: [Input] Password.
- db: [Input] Database name, if not provided by the user, connection can still be established, and the user can create a new database through this connection. If a database name is provided, it indicates that the database has already been created by the user, and it will be used by default.
- port: [Input] Port on which the taosd program listens.
- Return Value: Returns the database connection, a null return value indicates failure. The application needs to save the returned parameter for subsequent use.
infoThe same process can connect to multiple TDengine clusters based on different hosts/ports.
-
TAOS *taos_connect_auth(const char *host, const char *user, const char *auth, const char *db, uint16_t port)
- Interface Description: Same functionality as taos_connect. Except the pass parameter is replaced by auth, other parameters are the same as taos_connect.
- Parameter Description:
- ip: [Input] FQDN of any node in the TDengine cluster.
- user: [Input] Username.
- auth: [Input] Original password taken as 32-bit lowercase md5.
- db: [Input] Database name, if not provided by the user, connection can still be established, and the user can create a new database through this connection. If a database name is provided, it indicates that the database has already been created, and it will be used by default.
- port: [Input] Port listened by the taosd program.
- Return Value: Returns the database connection, a null return value indicates failure. The application needs to save the returned parameter for subsequent use.
-
char *taos_get_server_info(TAOS *taos)
- Interface Description: Get server version information.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns the server version information.
-
int taos_select_db(TAOS *taos, const char *db)
- Interface Description: Sets the current default database to
db
. - Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - db: [Input] Database name.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value:
0
: Success, non-0
: Failure, refer to the error code page for details.
- Interface Description: Sets the current default database to
-
int taos_get_current_db(TAOS *taos, char *database, int len, int *required)
- Interface Description: Get the current database name.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - database: [Output] Stores the current database name.
- len: [Input] Space size of the database.
- required: [Output] Stores the space required for the current database name (including the final '\0').
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value:
0
: Success,-1
: Failure, detailed error information can be obtained by calling the function taos_errstr(NULL).- If database == NULL or len <= 0, returns failure.
- If len is less than the space required to store the database name (including the final '\0'), returns failure, and the data in the database is truncated and ends with '\0'.
- If len is greater than or equal to the space required to store the database name (including the final '\0'), returns success, and the database name ends with '\0' in the database.
-
int taos_set_notify_cb(TAOS *taos, __taos_notify_fn_t fp, void *param, int type)
- Interface Description: Set the event callback function.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - fp: [Input] Event callback function pointer. Function declaration: typedef void (__taos_notify_fn_t)(voidparam, void *ext, int type); where, param is the user-defined parameter, ext is the extension parameter (dependent on the event type, for TAOS_NOTIFY_PASSVER returns user password version), type is the event type.
- param: [Input] User-defined parameter.
- type: [Input] Event type. Range of values: 1) TAOS_NOTIFY_PASSVER: User password change.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value:
0
: Success,-1
: Failure, detailed error information can be obtained by calling the function taos_errstr(NULL).
-
void taos_close(TAOS *taos)
- Interface Description: Close connection.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function.
- taos: [Input] Pointer to the database connection, which is established through the
Synchronous Queries
This section introduces APIs that are all synchronous interfaces. After being called by the application, they will block and wait for a response until a result or error message is received.
-
TAOS_RES* taos_query(TAOS *taos, const char *sql)
- Interface Description: Executes an SQL statement, which can be a DQL, DML, or DDL statement.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - sql: [Input] The SQL statement to execute.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: The execution result cannot be determined by whether the return value is
NULL
. Instead, thetaos_errno()
function must be called to parse the error code in the result set.- taos_errno return value:
0
: success,-1
: failure, for details please call the taos_errstr function to get the error message.
- taos_errno return value:
-
int taos_result_precision(TAOS_RES *res)
- Interface Description: Returns the precision category of the timestamp field in the result set.
- Parameter Description:
- res: [Input] Result set.
- Return Value:
0
: millisecond,1
: microsecond,2
: nanosecond.
-
TAOS_ROW taos_fetch_row(TAOS_RES *res)
- Interface Description: Fetches data from the query result set row by row.
- Parameter Description:
- res: [Input] Result set.
- Return Value: Non-
NULL
: success,NULL
: failure, you can call taos_errstr(NULL) for more detailed error information.
-
int taos_fetch_block(TAOS_RES *res, TAOS_ROW *rows)
- Interface Description: Batch fetches data from the query result set.
- Parameter Description:
- res: [Input] Result set.
- rows: [Output] Used to store rows fetched from the result set.
- Return Value: The return value is the number of rows fetched; if there are no more rows, it returns 0.
-
int taos_num_fields(TAOS_RES *res)
andint taos_field_count(TAOS_RES *res)
- Interface Description: These two APIs are equivalent and are used to get the number of columns in the query result set.
- Parameter Description:
- res: [Input] Result set.
- Return Value: The return value is the number of columns in the result set.
-
int* taos_fetch_lengths(TAOS_RES *res)
- Interface Description: Gets the length of each field in the result set.
- Parameter Description:
- res: [Input] Result set.
- Return Value: The return value is an array, the length of which is the number of columns in the result set.
-
int taos_affected_rows(TAOS_RES *res)
- Interface Description: Gets the number of rows affected by the executed SQL statement.
- Parameter Description:
- res: [Input] Result set.
- Return Value: The return value indicates the number of affected rows.
-
TAOS_FIELD *taos_fetch_fields(TAOS_RES *res)
- Interface Description: Gets the attributes of each column's data in the query result set (column name, data type, length), used in conjunction with
taos_num_fields()
to parse the data of a tuple (a row) returned bytaos_fetch_row()
. - Parameter Description:
- res: [Input] Result set.
- Return Value: Non-
NULL
: successful, returns a pointer to a TAOS_FIELD structure, each element representing the metadata of a column.NULL
: failure.
- Interface Description: Gets the attributes of each column's data in the query result set (column name, data type, length), used in conjunction with
-
void taos_stop_query(TAOS_RES *res)
- Interface Description: Stops the execution of the current query.
- Parameter Description:
- res: [Input] Result set.
-
void taos_free_result(TAOS_RES *res)
- Interface Description: Frees the query result set and related resources. After completing the query, it is essential to call this API to release resources, otherwise, it may lead to memory leaks in the application. However, be aware that if you call
taos_consume()
or other functions to fetch query results after releasing resources, it will cause the application to crash. - Parameter Description:
- res: [Input] Result set.
- Interface Description: Frees the query result set and related resources. After completing the query, it is essential to call this API to release resources, otherwise, it may lead to memory leaks in the application. However, be aware that if you call
-
char *taos_errstr(TAOS_RES *res)
- Interface Description: Gets the reason for the failure of the most recent API call, returning a string indicating the error message.
- Parameter Description:
- res: [Input] Result set.
- Return Value: A string indicating the error message.
-
int taos_errno(TAOS_RES *res)
- Interface Description: Retrieves the error code of the last API call failure.
- Parameter Description:
- res: [Input] Result set.
- Return Value: String indicating the error message.
From version 2.0, TDengine recommends that each thread in a database application establishes its own connection, or builds a connection pool based on the thread, rather than sharing the connection (TAOS*) structure across different threads in the application. Operations such as queries and writes based on the TAOS structure are thread-safe, but stateful statements like "USE statement" may interfere with each other across threads. Additionally, the C language connector can dynamically establish new database-oriented connections as needed (this process is invisible to users), and it is recommended to call taos_close()
to close the connection only when the program is about to exit.
Another point to note is that during the execution of the aforementioned synchronous APIs, APIs like pthread_cancel should not be used to forcibly terminate threads, as this involves synchronization operations of some modules and may cause issues including but not limited to deadlocks.
Asynchronous Queries
TDengine also offers higher-performance asynchronous APIs for data insertion and query operations. Under the same hardware and software conditions, the asynchronous API processes data insertions 2 to 4 times faster than the synchronous API. Asynchronous APIs use a non-blocking call method, returning immediately before a specific database operation is actually completed. The calling thread can then handle other tasks, thereby enhancing the overall application performance. Asynchronous APIs are particularly advantageous under conditions of severe network latency.
Asynchronous APIs require the application to provide corresponding callback functions, with parameters set as follows: the first two parameters are consistent, the third depends on the specific API. The first parameter, param, is provided by the application during the asynchronous API call for use in the callback to retrieve the context of the operation, depending on the implementation. The second parameter is the result set of the SQL operation; if null, such as in an insert operation, it means no records are returned; if not null, such as in a select operation, it means records are returned.
Asynchronous APIs are relatively demanding for users, who may choose to use them based on specific application scenarios. Below are two important asynchronous APIs:
-
void taos_query_a(TAOS *taos, const char *sql, void (*fp)(void *param, TAOS_RES *, int code), void *param);
- Interface Description: Asynchronously executes an SQL statement.
- Parameter Description:
- taos: [Input] Pointer to the database connection, established through the
taos_connect()
function. - sql: [Input] SQL statement to be executed.
- fp: User-defined callback function, where the third parameter
code
indicates whether the operation was successful (0
for success, negative for failure; calltaos_errstr()
to get the reason for failure). The application should mainly handle the second parameterTAOS_RES *
, which is the result set returned by the query. - param: Parameter provided by the application for the callback.
- taos: [Input] Pointer to the database connection, established through the
-
void taos_fetch_rows_a(TAOS_RES *res, void (*fp)(void *param, TAOS_RES *, int numOfRows), void *param);
- Interface Description: Batch retrieves the result set of an asynchronous query, can only be used in conjunction with
taos_query_a()
. - Parameter Description:
- res: Result set returned by the callback of
taos_query_a()
. - fp: Callback function. Its parameter
param
is a user-defined parameter structure passed to the callback function;numOfRows
is the number of rows of data retrieved (not the function of the entire result set). In the callback function, the application can iterate forward through the batch records by callingtaos_fetch_row()
. After reading all the records in a block, the application needs to continue callingtaos_fetch_rows_a()
in the callback function to process the next batch of records until the returned number of rowsnumOfRows
is zero (results are completely returned) or the number of rows is negative (query error).
- res: Result set returned by the callback of
- Interface Description: Batch retrieves the result set of an asynchronous query, can only be used in conjunction with
TDengine's asynchronous APIs all use a non-blocking call mode. Applications can open multiple tables simultaneously with multiple threads and can perform queries or insertions on each opened table at the same time. It should be noted that client applications must ensure that operations on the same table are completely serialized, meaning that a second insertion or query operation cannot be performed on the same table until the first operation is completed (has not returned).
Parameter Binding
In addition to directly calling taos_query()
for queries, TDengine also offers a Prepare API that supports parameter binding, similar in style to MySQL, currently only supporting the use of a question mark ?
to represent the parameter to be bound.
Starting from versions 2.1.1.0 and 2.1.2.0, TDengine has significantly improved the parameter binding interface support for data writing (INSERT) scenarios. This avoids the resource consumption of SQL syntax parsing when writing data through the parameter binding interface, thereby significantly improving writing performance in most cases. The typical operation steps are as follows:
- Call
taos_stmt_init()
to create a parameter binding object; - Call
taos_stmt_prepare()
to parse the INSERT statement; - If the INSERT statement reserves a table name but no TAGS, then call
taos_stmt_set_tbname()
to set the table name; - If the INSERT statement reserves both a table name and TAGS (for example, the INSERT statement adopts the automatic table creation method), then call
taos_stmt_set_tbname_tags()
to set the values of the table name and TAGS; - Call
taos_stmt_bind_param_batch()
to set the VALUES in a multi-row manner, or calltaos_stmt_bind_param()
to set the VALUES in a single-row manner; - Call
taos_stmt_add_batch()
to add the currently bound parameters to the batch processing; - Steps 3 to 6 can be repeated to add more data rows to the batch processing;
- Call
taos_stmt_execute()
to execute the prepared batch processing command; - Once execution is complete, call
taos_stmt_close()
to release all resources.
Note: If taos_stmt_execute()
is successful and there is no need to change the SQL statement, then it is possible to reuse the parsing result of taos_stmt_prepare()
and directly proceed to steps 3 to 6 to bind new data. However, if there is an error in execution, it is not recommended to continue working in the current context. Instead, it is advisable to release resources and start over from the taos_stmt_init()
step.
The specific functions related to the interface are as follows (you can also refer to the prepare.c file for how to use the corresponding functions):
-
TAOS_STMT* taos_stmt_init(TAOS *taos)
- Interface Description: Initializes a precompiled SQL statement object.
- Parameter Description:
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Non-
NULL
: Success, returns a pointer to a TAOS_STMT structure representing the precompiled SQL statement object.NULL
: Failure, please call taos_stmt_errstr() function for error details.
-
int taos_stmt_prepare(TAOS_STMT *stmt, const char *sql, unsigned long length)
- Interface Description: Parses a precompiled SQL statement and binds the parsing results and parameter information to stmt.
- Parameter Description:
- stmt: [Input] Pointer to a valid precompiled SQL statement object.
- sql: [Input] SQL statement to be parsed.
- length: [Input] Length of the sql parameter. If the length is greater than 0, this parameter will be used as the length of the SQL statement; if it is 0, the length of the SQL statement will be automatically determined.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
-
int taos_stmt_bind_param(TAOS_STMT *stmt, TAOS_MULTI_BIND *bind)
- Interface Description: Binds parameters to a precompiled SQL statement. Not as efficient as
taos_stmt_bind_param_batch()
, but can support non-INSERT type SQL statements. - Parameter Description:
- stmt: [Input] Pointer to a valid precompiled SQL statement object.
- bind: [Input] Pointer to a valid TAOS_MULTI_BIND structure, which contains the list of parameters to be bound to the SQL statement. Ensure that the number and order of elements in this array match the parameters in the SQL statement exactly. The usage of TAOS_MULTI_BIND is similar to MYSQL_BIND in MySQL.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: Binds parameters to a precompiled SQL statement. Not as efficient as
-
int taos_stmt_set_tbname(TAOS_STMT* stmt, const char* name)
- Interface Description: (New in version 2.1.1.0, only supports replacing parameter values in INSERT statements) When the table name in the SQL statement uses a
?
placeholder, this function can be used to bind a specific table name. - Parameter Description:
- stmt: [Input] Pointer to a valid precompiled SQL statement object.
- name: [Input] Pointer to a string constant containing the subtable name.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: (New in version 2.1.1.0, only supports replacing parameter values in INSERT statements) When the table name in the SQL statement uses a
-
int taos_stmt_set_tbname_tags(TAOS_STMT* stmt, const char* name, TAOS_MULTI_BIND* tags)
- Interface Description: (Added in version 2.1.2.0, only supports replacing parameter values in INSERT statements) When both the table name and TAGS in the SQL statement use
?
placeholders, this function can be used to bind specific table names and specific TAGS values. The most typical scenario is the INSERT statement that uses the auto-create table feature (the current version does not support specifying specific TAGS columns). The number of columns in the TAGS parameter must match exactly the number of TAGS required by the SQL statement. - Parameter Description:
- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- name: [Input] Points to a string constant containing the subtable name.
- tags: [Input] Points to a valid pointer to a TAOS_MULTI_BIND structure, which contains the values of the subtable tags.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: (Added in version 2.1.2.0, only supports replacing parameter values in INSERT statements) When both the table name and TAGS in the SQL statement use
-
int taos_stmt_bind_param_batch(TAOS_STMT* stmt, TAOS_MULTI_BIND* bind)
- Interface Description: (Added in version 2.1.1.0, only supports replacing parameter values in INSERT statements) Passes the data to be bound in a multi-column manner, ensuring that the order and number of data columns passed here are completely consistent with the VALUES parameters in the SQL statement.
- Parameter Description:
- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- bind: [Input] Points to a valid pointer to a TAOS_MULTI_BIND structure, which contains the list of parameters to be batch bound to the SQL statement.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
-
int taos_stmt_add_batch(TAOS_STMT *stmt)
- Interface Description: Adds the currently bound parameters to the batch processing. After calling this function, you can call
taos_stmt_bind_param()
ortaos_stmt_bind_param_batch()
again to bind new parameters. Note that this function only supports INSERT/IMPORT statements; if it is a SELECT or other SQL statements, it will return an error.- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: Adds the currently bound parameters to the batch processing. After calling this function, you can call
-
int taos_stmt_execute(TAOS_STMT *stmt)
- Interface Description: Executes the prepared statement. Currently, a statement can only be executed once.
- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: Executes the prepared statement. Currently, a statement can only be executed once.
-
int taos_stmt_affected_rows(TAOS_STMT *stmt)
- Interface Description: Gets the number of rows affected after executing the precompiled SQL statement.
- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- Return Value: Returns the number of affected rows.
- Interface Description: Gets the number of rows affected after executing the precompiled SQL statement.
-
int taos_stmt_affected_rows_once(TAOS_STMT *stmt)
- Interface Description: Gets the number of rows affected by executing a bound statement once.
- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- Return Value: Returns the number of affected rows.
- Interface Description: Gets the number of rows affected by executing a bound statement once.
-
TAOS_RES* taos_stmt_use_result(TAOS_STMT *stmt)
- Interface Description: Retrieves the result set of the statement. The usage of the result set is consistent with non-parameterized calls, and
taos_free_result()
should be called to release resources after use.- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- Return Value: Non-
NULL
: Success, returns a pointer to the query result set.NULL
: Failure, please call taos_stmt_errstr() function for error details.
- Interface Description: Retrieves the result set of the statement. The usage of the result set is consistent with non-parameterized calls, and
-
int taos_stmt_close(TAOS_STMT *stmt)
- Interface Description: After execution, releases all resources.
- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- Return Value:
0
: Success. Non-0
: Failure, please refer to the error code page for details.
- Interface Description: After execution, releases all resources.
-
char * taos_stmt_errstr(TAOS_STMT *stmt)
- Interface Description: (Added in version 2.1.3.0) Used to obtain error information when other STMT APIs return an error (return error code or null pointer).
- stmt: [Input] Points to a valid pointer to a precompiled SQL statement object.
- Return Value: Returns a pointer to a string containing error information.
- Interface Description: (Added in version 2.1.3.0) Used to obtain error information when other STMT APIs return an error (return error code or null pointer).
Schemaless Insert
In addition to using SQL or parameter binding APIs to insert data, you can also use a Schemaless method for insertion. Schemaless allows you to insert data without having to pre-create the structure of supertables/subtables. The TDengine system will automatically create and maintain the required table structure based on the data content written. For more details on how to use Schemaless, see the Schemaless Insert section. Here, we introduce the accompanying C/C++ API.
-
TAOS_RES* taos_schemaless_insert(TAOS* taos, const char* lines[], int numLines, int protocol, int precision)
- Interface Description: Performs a batch insert operation in schemaless mode, writing text data in line protocol to TDengine.
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet the parsing format requirements.
- numLines: [Input] The number of lines of text data, cannot be 0.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Timestamp precision string in the text data.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a TAOS_RES structure, which contains the results of the insert operation. Applications can obtain error information using
taos_errstr()
, or get the error code usingtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, in which casetaos_errno()
can still be safely called to obtain the error code information. The returned TAOS_RES must be managed by the caller to avoid memory leaks.
Explanation
Protocol type is an enumeration type, including the following three formats:
- TSDB_SML_LINE_PROTOCOL: InfluxDB Line Protocol
- TSDB_SML_TELNET_PROTOCOL: OpenTSDB Telnet text line protocol
- TSDB_SML_JSON_PROTOCOL: OpenTSDB Json protocol format
The definition of timestamp resolution, defined in the
taos.h
file, is as follows:- TSDB_SML_TIMESTAMP_NOT_CONFIGURED = 0,
- TSDB_SML_TIMESTAMP_HOURS,
- TSDB_SML_TIMESTAMP_MINUTES,
- TSDB_SML_TIMESTAMP_SECONDS,
- TSDB_SML_TIMESTAMP_MILLI_SECONDS,
- TSDB_SML_TIMESTAMP_MICRO_SECONDS,
- TSDB_SML_TIMESTAMP_NANO_SECONDS
Note that the timestamp resolution parameter only takes effect when the protocol type is
SML_LINE_PROTOCOL
. For OpenTSDB's text protocols, timestamp parsing follows its official parsing rules — based on the number of characters contained in the timestamp to determine the time precision.Other related schemaless interfaces
- Interface Description: Performs a batch insert operation in schemaless mode, writing text data in line protocol to TDengine.
-
TAOS_RES *taos_schemaless_insert_with_reqid(TAOS *taos, char *lines[], int numLines, int protocol, int precision, int64_t reqid)
- Interface Description: Performs a batch insert operation in schemaless mode, writing text data in line protocol to TDengine. The parameter reqid is passed to track the entire function call chain.
- taos: [Input] Pointer to the database connection, which is established through
taos_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet the parsing format requirements.
- numLines: [Input] The number of lines of text data, cannot be 0.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Timestamp precision string in the text data.
- reqid: [Input] Specified request ID, used to track the calling request. The request ID (reqid) can be used to establish a correlation between requests and responses on the client and server sides, which is very useful for tracking and debugging in distributed systems.
- taos: [Input] Pointer to the database connection, which is established through
- Return Value: Returns a pointer to a TAOS_RES structure, which contains the results of the insert operation. Applications can obtain error information using
taos_errstr()
, or get the error code usingtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, in which casetaos_errno()
can still be safely called to obtain the error code information. The returned TAOS_RES must be managed by the caller to avoid memory leaks.
- Interface Description: Performs a batch insert operation in schemaless mode, writing text data in line protocol to TDengine. The parameter reqid is passed to track the entire function call chain.
-
TAOS_RES *taos_schemaless_insert_raw(TAOS *taos, char *lines, int len, int32_t *totalRows, int protocol, int precision)
- Interface Description: Executes a schemaless batch insertion operation, writing text data in line protocol format into TDengine. Data is represented by the
lines
pointer and its lengthlen
, addressing the issue where data containing '\0' gets truncated.- taos: [Input] Pointer to the database connection, established through the
taos_connect()
function. - lines: [Input] Text data. A schemaless text string that meets parsing format requirements.
- len: [Input] Total length (in bytes) of the data buffer
lines
. - totalRows: [Output] Pointer to an integer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Precision string for timestamps in the text data.
- taos: [Input] Pointer to the database connection, established through the
- Return Value: Returns a pointer to a TAOS_RES structure containing the results of the insertion operation. Errors can be retrieved using
taos_errstr()
, and error codes withtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, buttaos_errno()
can still be safely called to obtain error code information. The returned TAOS_RES must be freed by the caller to avoid memory leaks.
- Interface Description: Executes a schemaless batch insertion operation, writing text data in line protocol format into TDengine. Data is represented by the
-
TAOS_RES *taos_schemaless_insert_raw_with_reqid(TAOS *taos, char *lines, int len, int32_t *totalRows, int protocol, int precision, int64_t reqid)
- Interface Description: Executes a schemaless batch insertion operation, writing text data in line protocol format into TDengine. Data is represented by the
lines
pointer and its lengthlen
, addressing the issue where data containing '\0' gets truncated. Thereqid
parameter is passed to track the entire function call chain.- taos: [Input] Pointer to the database connection, established through the
taos_connect()
function. - lines: [Input] Text data. A schemaless text string that meets parsing format requirements.
- len: [Input] Total length (in bytes) of the data buffer
lines
. - totalRows: [Output] Pointer to an integer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Precision string for timestamps in the text data.
- reqid: [Input] Specified request ID, used to track the calling request. The request ID (reqid) can be used to establish a correlation between requests and responses on the client and server sides, which is very useful for tracking and debugging in distributed systems.
- taos: [Input] Pointer to the database connection, established through the
- Return Value: Returns a pointer to a TAOS_RES structure containing the results of the insertion operation. Errors can be retrieved using
taos_errstr()
, and error codes withtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, buttaos_errno()
can still be safely called to obtain error code information. The returned TAOS_RES must be freed by the caller to avoid memory leaks.
- Interface Description: Executes a schemaless batch insertion operation, writing text data in line protocol format into TDengine. Data is represented by the
-
TAOS_RES *taos_schemaless_insert_ttl(TAOS *taos, char *lines[], int numLines, int protocol, int precision, int32_t ttl)
- Interface Description: Executes a schemaless batch insertion operation, writing text data in line protocol format into TDengine. The
ttl
parameter is used to control the expiration time of the table's TTL.- taos: [Input] Pointer to the database connection, established through the
taos_connect()
function. - lines: [Input] Text data. A schemaless text string that meets parsing format requirements.
- numLines: [Input] Number of lines of text data, cannot be 0.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Precision string for timestamps in the text data.
- ttl: [Input] Specified Time-To-Live (TTL), in days. Records will be automatically deleted after exceeding this lifespan.
- taos: [Input] Pointer to the database connection, established through the
- Return Value: Returns a pointer to a TAOS_RES structure containing the results of the insertion operation. Errors can be retrieved using
taos_errstr()
, and error codes withtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, buttaos_errno()
can still be safely called to obtain error code information. The returned TAOS_RES must be freed by the caller to avoid memory leaks.
- Interface Description: Executes a schemaless batch insertion operation, writing text data in line protocol format into TDengine. The
-
TAOS_RES *taos_schemaless_insert_ttl_with_reqid(TAOS *taos, char *lines[], int numLines, int protocol, int precision, int32_t ttl, int64_t reqid)
- Interface Description: Executes a batch insert operation without a schema, writing line protocol text data into TDengine. The ttl parameter is passed to control the expiration time of the table's ttl. The reqid parameter is passed to track the entire function call chain.
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet parsing format requirements.
- numLines: [Input] Number of lines of text data, cannot be 0.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Timestamp precision string in the text data.
- ttl: [Input] Specified Time-To-Live (TTL), in days. Records will be automatically deleted after exceeding this lifespan.
- reqid: [Input] Specified request ID, used to track the call request. The request ID (reqid) can be used to establish a correlation between requests and responses across client and server sides, which is very useful for tracking and debugging in distributed systems.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a TAOS_RES structure, which contains the results of the insert operation. Applications can obtain error information using
taos_errstr()
, or get the error code usingtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, in which casetaos_errno()
can still be safely called to obtain error code information. The returned TAOS_RES must be freed by the caller to avoid memory leaks.
- Interface Description: Executes a batch insert operation without a schema, writing line protocol text data into TDengine. The ttl parameter is passed to control the expiration time of the table's ttl. The reqid parameter is passed to track the entire function call chain.
-
TAOS_RES *taos_schemaless_insert_raw_ttl(TAOS *taos, char *lines, int len, int32_t *totalRows, int protocol, int precision, int32_t ttl)
- Interface Description: Executes a batch insert operation without a schema, writing line protocol text data into TDengine. The lines pointer and length len are passed to represent the data, to address the issue of data being truncated due to containing '\0'. The ttl parameter is passed to control the expiration time of the table's ttl.
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet parsing format requirements.
- len: [Input] Total length (in bytes) of the data buffer lines.
- totalRows: [Output] Points to an integer pointer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Timestamp precision string in the text data.
- ttl: [Input] Specified Time-To-Live (TTL), in days. Records will be automatically deleted after exceeding this lifespan.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a TAOS_RES structure, which contains the results of the insert operation. Applications can obtain error information using
taos_errstr()
, or get the error code usingtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, in which casetaos_errno()
can still be safely called to obtain error code information. The returned TAOS_RES must be freed by the caller to avoid memory leaks.
- Interface Description: Executes a batch insert operation without a schema, writing line protocol text data into TDengine. The lines pointer and length len are passed to represent the data, to address the issue of data being truncated due to containing '\0'. The ttl parameter is passed to control the expiration time of the table's ttl.
-
TAOS_RES *taos_schemaless_insert_raw_ttl_with_reqid(TAOS *taos, char *lines, int len, int32_t *totalRows, int protocol, int precision, int32_t ttl, int64_t reqid)
- Interface Description: Executes a batch insert operation without a schema, writing line protocol text data into TDengine. The lines pointer and length len are passed to represent the data, to address the issue of data being truncated due to containing '\0'. The ttl parameter is passed to control the expiration time of the table's ttl. The reqid parameter is passed to track the entire function call chain.
- taos: [Input] Pointer to the database connection, which is established through the
taos_connect()
function. - lines: [Input] Text data. Schemaless text strings that meet parsing format requirements.
- len: [Input] Total length (in bytes) of the data buffer lines.
- totalRows: [Output] Points to an integer pointer, used to return the total number of records successfully inserted.
- protocol: [Input] Line protocol type, used to identify the text data format.
- precision: [Input] Timestamp precision string in the text data.
- ttl: [Input] Specified Time-To-Live (TTL), in days. Records will be automatically deleted after exceeding this lifespan.
- reqid: [Input] Specified request ID, used to track the call request. The request ID (reqid) can be used to establish a correlation between requests and responses across client and server sides, which is very useful for tracking and debugging in distributed systems.
- taos: [Input] Pointer to the database connection, which is established through the
- Return Value: Returns a pointer to a TAOS_RES structure, which contains the results of the insert operation. Applications can obtain error information using
taos_errstr()
, or get the error code usingtaos_errno()
. In some cases, the returned TAOS_RES may beNULL
, in which casetaos_errno()
can still be safely called to obtain error code information. The returned TAOS_RES must be freed by the caller to avoid memory leaks.
- Interface Description: Executes a batch insert operation without a schema, writing line protocol text data into TDengine. The lines pointer and length len are passed to represent the data, to address the issue of data being truncated due to containing '\0'. The ttl parameter is passed to control the expiration time of the table's ttl. The reqid parameter is passed to track the entire function call chain.
Description
- The above 7 interfaces are extension interfaces, mainly used for passing ttl and reqid parameters during schemaless writing, and can be used as needed.
- Interfaces with _raw use the passed parameters lines pointer and length len to represent data, to solve the problem of data containing '\0' being truncated in the original interface. The totalRows pointer returns the number of data rows parsed.
- Interfaces with _ttl can pass the ttl parameter to control the ttl expiration time of table creation.
- Interfaces with _reqid can track the entire call chain by passing the reqid parameter.
Data Subscription
-
const char *tmq_err2str(int32_t code)
- Interface Description: Used to convert the error code of data subscription into error information.
- code: [Input] Error code for data subscription.
- Return Value: Returns a pointer to a string containing error information, the return value is not NULL, but the error information may be an empty string.
- Interface Description: Used to convert the error code of data subscription into error information.
-
tmq_conf_t *tmq_conf_new()
- Interface Description: Creates a new TMQ configuration object.
- Return Value: Non
NULL
: Success, returns a pointer to a tmq_conf_t structure, which is used to configure the behavior and features of TMQ.NULL
: Failure, you can call the function taos_errstr(NULL) for more detailed error information.
-
tmq_conf_res_t tmq_conf_set(tmq_conf_t *conf, const char *key, const char *value)
- Interface Description: Sets the configuration items in the TMQ configuration object, used to configure consumption parameters.
- conf: [Input] Pointer to a valid tmq_conf_t structure, representing a TMQ configuration object.
- key: [Input] Configuration item key name.
- value: [Input] Configuration item value.
- Return Value: Returns a tmq_conf_res_t enum value, indicating the result of the configuration setting.
- TMQ_CONF_OK: Successfully set the configuration item.
- TMQ_CONF_INVALID_KEY: Invalid key value.
- TMQ_CONF_UNKNOWN: Invalid key name.
- Interface Description: Sets the configuration items in the TMQ configuration object, used to configure consumption parameters.
-
void tmq_conf_set_auto_commit_cb(tmq_conf_t *conf, tmq_commit_cb *cb, void *param)
- Interface Description: Sets the auto-commit callback function in the TMQ configuration object.
- conf: [Input] Pointer to a valid tmq_conf_t structure, representing a TMQ configuration object.
- cb: [Input] Pointer to a valid tmq_commit_cb callback function, which will be called after the message is consumed to confirm the message handling status.
- param: [Input] User-defined parameter passed to the callback function.
The definition of the auto-commit callback function is as follows:
typedef void(tmq_commit_cb(tmq_t *tmq, int32_t code, void *param))
- Interface Description: Sets the auto-commit callback function in the TMQ configuration object.
-
void tmq_conf_destroy(tmq_conf_t *conf)
- Interface Description: Destroys a TMQ configuration object and releases related resources.
- conf: [Input] Pointer to a valid tmq_conf_t structure, representing a TMQ configuration object.
- Interface Description: Destroys a TMQ configuration object and releases related resources.
-
tmq_list_t *tmq_list_new()
- Interface Description: Used to create a tmq_list_t structure, used to store subscribed topics.
- Return Value: Non
NULL
: Success, returns a pointer to a tmq_list_t structure.NULL
: Failure, you can call the function taos_errstr(NULL) for more detailed error information.
-
int32_t tmq_list_append(tmq_list_t *list, const char* topic)
- Interface Description: Used to add a topic to a tmq_list_t structure.
- list: [Input] Pointer to a valid tmq_list_t structure, representing a TMQ list object.
- topic: [Input] Topic name.
- Return Value:
0
: Success. Non0
: Failure, you can call the functionchar *tmq_err2str(int32_t code)
for more detailed error information.
- Interface Description: Used to add a topic to a tmq_list_t structure.
-
void tmq_list_destroy(tmq_list_t *list)
- Interface Description: Used to destroy a tmq_list_t structure, the result of tmq_list_new needs to be destroyed through this interface.
- list: [Input] Pointer to a valid tmq_list_t structure, representing a TMQ list object.
- Interface Description: Used to destroy a tmq_list_t structure, the result of tmq_list_new needs to be destroyed through this interface.
-
int32_t tmq_list_get_size(const tmq_list_t *list)
- Interface Description: Used to get the number of topics in the tmq_list_t structure.
- list: [Input] Points to a valid tmq_list_t structure pointer, representing a TMQ list object.
- Return Value:
>=0
: Success, returns the number of topics in the tmq_list_t structure.-1
: Failure, indicates the input parameter list is NULL.
- Interface Description: Used to get the number of topics in the tmq_list_t structure.
-
char **tmq_list_to_c_array(const tmq_list_t *list)
- Interface Description: Used to convert a tmq_list_t structure into a C array, where each element is a string pointer.
- list: [Input] Points to a valid tmq_list_t structure pointer, representing a TMQ list object.
- Return Value: Non-
NULL
: Success, returns a C array, each element is a string pointer representing a topic name.NULL
: Failure, indicates the input parameter list is NULL.
- Interface Description: Used to convert a tmq_list_t structure into a C array, where each element is a string pointer.
-
tmq_t *tmq_consumer_new(tmq_conf_t *conf, char *errstr, int32_t errstrLen)
- Interface Description: Used to create a tmq_t structure for consuming data. After consuming the data, tmq_consumer_close must be called to close the consumer.
- conf: [Input] Points to a valid tmq_conf_t structure pointer, representing a TMQ configuration object.
- errstr: [Output] Points to a valid character buffer pointer, used to receive error messages that may occur during creation. Memory allocation/release is the responsibility of the caller.
- errstrLen: [Input] Specifies the size of the errstr buffer (in bytes).
- Return Value: Non-
NULL
: Success, returns a pointer to a tmq_t structure representing a TMQ consumer object.NULL
: Failure, error information stored in the errstr parameter.
- Interface Description: Used to create a tmq_t structure for consuming data. After consuming the data, tmq_consumer_close must be called to close the consumer.
-
int32_t tmq_subscribe(tmq_t *tmq, const tmq_list_t *topic_list)
- Interface Description: Used to subscribe to a list of topics. After consuming the data, tmq_subscribe must be called to unsubscribe.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- topic_list: [Input] Points to a valid tmq_list_t structure pointer, containing one or more topic names.
- Return Value:
0
: Success. Non-0
: Failure, the functionchar *tmq_err2str(int32_t code)
can be called for more detailed error information.
- Interface Description: Used to subscribe to a list of topics. After consuming the data, tmq_subscribe must be called to unsubscribe.
-
int32_t tmq_unsubscribe(tmq_t *tmq)
- Interface Description: Used to unsubscribe from a list of topics. Must be used in conjunction with tmq_subscribe.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- Return Value:
0
: Success. Non-0
: Failure, the functionchar *tmq_err2str(int32_t code)
can be called for more detailed error information.
- Interface Description: Used to unsubscribe from a list of topics. Must be used in conjunction with tmq_subscribe.
-
int32_t tmq_subscription(tmq_t *tmq, tmq_list_t **topic_list)
- Interface Description: Used to get the list of subscribed topics.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- topic_list: [Output] Points to a pointer of a tmq_list_t structure pointer, used to receive the current list of subscribed topics.
- Return Value:
0
: Success. Non-0
: Failure, the functionchar *tmq_err2str(int32_t code)
can be called for more detailed error information.
- Interface Description: Used to get the list of subscribed topics.
-
TAOS_RES *tmq_consumer_poll(tmq_t *tmq, int64_t timeout)
- Interface Description: Used to poll for consuming data, each consumer can only call this interface in a single thread.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- timeout: [Input] Polling timeout in milliseconds, a negative number indicates a default timeout of 1 second.
- Return Value: Non-
NULL
: Success, returns a pointer to a TAOS_RES structure containing the received messages.NULL
: Failure, indicates no data. TAOS_RES results are consistent with taos_query results, and information in TAOS_RES can be obtained through various query interfaces, such as schema, etc.
- Interface Description: Used to poll for consuming data, each consumer can only call this interface in a single thread.
-
int32_t tmq_consumer_close(tmq_t *tmq)
- Interface Description: Used to close a tmq_t structure. Must be used in conjunction with tmq_consumer_new.
- tmq: [Input] Points to a valid tmq_t structure pointer, which represents a TMQ consumer object.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Used to close a tmq_t structure. Must be used in conjunction with tmq_consumer_new.
-
int32_t tmq_get_topic_assignment(tmq_t *tmq, const char *pTopicName, tmq_topic_assignment **assignment, int32_t *numOfAssignment)
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
- tmq: [Input] Points to a valid tmq_t structure pointer, which represents a TMQ consumer object.
- pTopicName: [Input] The topic name for which to query the assignment information.
- assignment: [Output] Points to a pointer to a tmq_topic_assignment structure, used to receive assignment information. The data size is numOfAssignment, and it needs to be released through the tmq_free_assignment interface.
- numOfAssignment: [Output] Points to an integer pointer, used to receive the number of valid vgroups assigned to the consumer.
- Return Value:
0
: Success. Non-0
: Failure, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
-
void tmq_free_assignment(tmq_topic_assignment* pAssignment)
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
- pAssignment: [Input] Points to a valid tmq_topic_assignment structure array pointer, which contains the vgroup assignment information.
- Interface Description: Returns the information of the vgroup currently assigned to the consumer, including vgId, the maximum and minimum offset of wal, and the current consumed offset.
-
int64_t tmq_committed(tmq_t *tmq, const char *pTopicName, int32_t vgId)
- Interface Description: Gets the committed offset for a specific topic and vgroup of the TMQ consumer object.
- tmq: [Input] Points to a valid tmq_t structure pointer, which represents a TMQ consumer object.
- pTopicName: [Input] The topic name for which to query the committed offset.
- vgId: [Input] The ID of the vgroup.
- Return Value:
>=0
: Success, returns an int64_t value representing the committed offset.<0
: Failure, the return value is the error code, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Gets the committed offset for a specific topic and vgroup of the TMQ consumer object.
-
int32_t tmq_commit_sync(tmq_t *tmq, const TAOS_RES *msg)
- Interface Description: Synchronously commits the message offset processed by the TMQ consumer object.
- tmq: [Input] Points to a valid tmq_t structure pointer, which represents a TMQ consumer object.
- msg: [Input] Points to a valid TAOS_RES structure pointer, which contains the processed message. If NULL, commits the current progress of all vgroups consumed by the current consumer.
- Return Value:
0
: Success, the offset has been successfully committed. Non-0
: Failure, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Synchronously commits the message offset processed by the TMQ consumer object.
-
void tmq_commit_async(tmq_t *tmq, const TAOS_RES *msg, tmq_commit_cb *cb, void *param)
- Interface Description: Asynchronously commits the message offset processed by the TMQ consumer object.
- tmq: [Input] Points to a valid tmq_t structure pointer, which represents a TMQ consumer object.
- msg: [Input] Points to a valid TAOS_RES structure pointer, which contains the processed message. If NULL, commits the current progress of all vgroups consumed by the current consumer.
- cb: [Input] A pointer to a callback function, which will be called upon completion of the commit.
- param: [Input] A user-defined parameter, which will be passed to cb in the callback function.
- Interface Description: Asynchronously commits the message offset processed by the TMQ consumer object.
-
int32_t tmq_commit_offset_sync(tmq_t *tmq, const char *pTopicName, int32_t vgId, int64_t offset)
- Interface Description: Synchronously commits the offset for a specific topic and vgroup of a TMQ consumer object.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The name of the topic for which the offset is to be committed.
- vgId: [Input] The ID of the virtual group vgroup.
- offset: [Input] The offset to be committed.
- Return Value:
0
: Success, the offset has been successfully committed. Non-0
: Failure, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Synchronously commits the offset for a specific topic and vgroup of a TMQ consumer object.
-
void tmq_commit_offset_async(tmq_t *tmq, const char *pTopicName, int32_t vgId, int64_t offset, tmq_commit_cb *cb, void *param)
- Interface Description: Asynchronously commits the offset for a specific topic and vgroup of a TMQ consumer object.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The name of the topic for which the offset is to be committed.
- vgId: [Input] The ID of the virtual group vgroup.
- offset: [Input] The offset to be committed.
- cb: [Input] A pointer to a callback function that will be called upon completion of the commit.
- param: [Input] A user-defined parameter that will be passed to the callback function cb.
Description
- There are two types of commit interfaces, each type has synchronous and asynchronous interfaces:
- First type: Commit based on message, submitting the progress in the message, if the message is NULL, submit the current progress of all vgroups consumed by the current consumer: tmq_commit_sync/tmq_commit_async
- Second type: Commit based on the offset of a specific topic and a specific vgroup: tmq_commit_offset_sync/tmq_commit_offset_async
- Interface Description: Asynchronously commits the offset for a specific topic and vgroup of a TMQ consumer object.
-
int64_t tmq_position(tmq_t *tmq, const char *pTopicName, int32_t vgId)
- Interface Description: Gets the current consumption position, i.e., the position of the next data that has been consumed.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The name of the topic for which the current position is being queried.
- vgId: [Input] The ID of the virtual group vgroup.
- Return Value:
>=0
: Success, returns an int64_t type value representing the offset of the current position.<0
: Failure, the return value is the error code, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Gets the current consumption position, i.e., the position of the next data that has been consumed.
-
int32_t tmq_offset_seek(tmq_t *tmq, const char *pTopicName, int32_t vgId, int64_t offset)
- Interface Description: Sets the offset of a TMQ consumer object in a specific topic and vgroup to a specified position.
- tmq: [Input] Points to a valid tmq_t structure pointer, representing a TMQ consumer object.
- pTopicName: [Input] The name of the topic for which the current position is being queried.
- vgId: [Input] The ID of the virtual group vgroup.
- offset: [Input] The ID of the virtual group vgroup.
- Return Value:
0
: Success, non-0
: Failure, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Sets the offset of a TMQ consumer object in a specific topic and vgroup to a specified position.
-
int64_t tmq_get_vgroup_offset(TAOS_RES* res)
- Interface Description: Extracts the current consumption data position offset of the virtual group (vgroup) from the message results obtained by the TMQ consumer.
- res: [Input] Points to a valid TAOS_RES structure pointer, containing messages polled from the TMQ consumer.
- Return Value:
>=0
: Success, returns an int64_t type value representing the offset of the current consumption position.<0
: Failure, the return value is the error code, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Extracts the current consumption data position offset of the virtual group (vgroup) from the message results obtained by the TMQ consumer.
-
int32_t tmq_get_vgroup_id(TAOS_RES *res)
- Interface Description: Extracts the ID of the virtual group (vgroup) from the message results obtained by the TMQ consumer.
- res: [Input] Points to a valid TAOS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value:
>=0
: Success, returns an int32_t type value representing the ID of the virtual group (vgroup).<0
: Failure, the return value is the error code, you can call the functionchar *tmq_err2str(int32_t code)
to get more detailed error information.
- Interface Description: Extracts the ID of the virtual group (vgroup) from the message results obtained by the TMQ consumer.
-
TAOS *tmq_get_connect(tmq_t *tmq)
- Interface Description: Retrieves the connection handle to the TDengine database from the TMQ consumer object.
- tmq: [Input] Points to a valid tmq_t structure pointer, which represents a TMQ consumer object.
- Return Value: Non-
NULL
: Success, returns a TAOS * type pointer pointing to the connection handle with the TDengine database.NULL
: Failure, illegal input parameters.
- Interface Description: Retrieves the connection handle to the TDengine database from the TMQ consumer object.
-
const char *tmq_get_table_name(TAOS_RES *res)
- Interface Description: Retrieves the table name from the message results obtained by the TMQ consumer.
- res: [Input] Points to a valid TAOS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Non-
NULL
: Success, returns a const char * type pointer pointing to the table name string.NULL
: Failure, illegal input parameters.
- Interface Description: Retrieves the table name from the message results obtained by the TMQ consumer.
-
tmq_res_t tmq_get_res_type(TAOS_RES *res)
- Interface Description: Retrieves the message type from the message results obtained by the TMQ consumer.
- res: [Input] Points to a valid TAOS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Returns a tmq_res_t type enumeration value representing the message type.
- tmq_res_t represents the type of data consumed, defined as follows:
typedef enum tmq_res_t {
TMQ_RES_INVALID = -1, // Invalid
TMQ_RES_DATA = 1, // Data type
TMQ_RES_TABLE_META = 2, // Metadata type
TMQ_RES_METADATA = 3 // Both metadata and data types, i.e., automatic table creation
} tmq_res_t; - Interface Description: Retrieves the message type from the message results obtained by the TMQ consumer.
-
const char *tmq_get_topic_name(TAOS_RES *res)
- Interface Description: Retrieves the topic name from the message results obtained by the TMQ consumer.
- res: [Input] Points to a valid TAOS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Non-
NULL
: Success, returns a const char * type pointer pointing to the topic name string.NULL
: Failure, illegal input parameters.
- Interface Description: Retrieves the topic name from the message results obtained by the TMQ consumer.
-
const char *tmq_get_db_name(TAOS_RES *res)
- Interface Description: Retrieves the database name from the message results obtained by the TMQ consumer.
- res: [Input] Points to a valid TAOS_RES structure pointer, which contains messages polled from the TMQ consumer.
- Return Value: Non-
NULL
: Success, returns a const char * type pointer pointing to the database name string.NULL
: Failure, illegal input parameters.
- Interface Description: Retrieves the database name from the message results obtained by the TMQ consumer.