update some log format
This commit is contained in:
parent
652afa54ec
commit
30c38cbafe
|
@ -289,32 +289,14 @@ JNIEXPORT jlong JNICALL Java_com_taosdata_jdbc_TSDBJNIConnector_getResultSetImp(
|
|||
return JNI_CONNECTION_NULL;
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< Updated upstream
|
||||
int num_fields = taos_field_count(tscon);
|
||||
if (num_fields != 0) {
|
||||
jlong ret = (jlong)taos_use_result(tscon);
|
||||
jniTrace("jobj:%p, taos:%p, get resultset:%p", jobj, tscon, (void *)ret);
|
||||
return ret;
|
||||
=======
|
||||
=======
|
||||
>>>>>>> origin/develop
|
||||
jlong ret = 0;
|
||||
|
||||
if (tscIsUpdateQuery(tscon)) {
|
||||
ret = 0; // for update query, no result pointer
|
||||
<<<<<<< HEAD
|
||||
jniTrace("jobj:%p, conn:%p, no result", jobj, tscon);
|
||||
} else {
|
||||
ret = (jlong) taos_use_result(tscon);
|
||||
jniTrace("jobj:%p, conn:%p, get resultset:%p", jobj, tscon, (void *) ret);
|
||||
>>>>>>> Stashed changes
|
||||
=======
|
||||
jniTrace("jobj:%p, taos:%p, no result", jobj, tscon);
|
||||
} else {
|
||||
ret = (jlong) taos_use_result(tscon);
|
||||
jniTrace("jobj:%p, taos:%p, get resultset:%p", jobj, tscon, (void *) ret);
|
||||
>>>>>>> origin/develop
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
|
@ -562,7 +562,7 @@ void *tscProcessMsgFromServer(char *msg, void *ahandle, void *thandle) {
|
|||
void *taosres = tscKeepConn[command] ? pSql : NULL;
|
||||
code = pRes->code ? -pRes->code : pRes->numOfRows;
|
||||
|
||||
tscTrace("%p Async SQL result:%d taosres:%p", pSql, code, taosres);
|
||||
tscTrace("%p Async SQL result:%d res:%p", pSql, code, taosres);
|
||||
|
||||
/*
|
||||
* Whether to free sqlObj or not should be decided before call the user defined function, since this SqlObj
|
||||
|
|
|
@ -176,7 +176,7 @@ void taos_init_imp() {
|
|||
tscConnCache = taosOpenConnCache(tsMaxMeterConnections * 2, taosCloseRpcConn, tscTmr, tsShellActivityTimer * 1000);
|
||||
|
||||
initialized = 1;
|
||||
tscTrace("taos client is initialized successfully");
|
||||
tscTrace("client is initialized successfully");
|
||||
tsInsertHeadSize = tsRpcHeadSize + sizeof(SShellSubmitMsg);
|
||||
}
|
||||
|
||||
|
|
|
@ -30,6 +30,9 @@
|
|||
#include <wordexp.h>
|
||||
|
||||
#include "taos.h"
|
||||
|
||||
extern char configDir[];
|
||||
|
||||
#pragma GCC diagnostic ignored "-Wmissing-braces"
|
||||
|
||||
#define BUFFER_SIZE 65536
|
||||
|
|
|
@ -50,7 +50,7 @@ int httpInitSystem() {
|
|||
httpServer = (HttpServer *)malloc(sizeof(HttpServer));
|
||||
memset(httpServer, 0, sizeof(HttpServer));
|
||||
|
||||
strcpy(httpServer->label, "taosh");
|
||||
strcpy(httpServer->label, "rest");
|
||||
strcpy(httpServer->serverIp, tsHttpIp);
|
||||
httpServer->serverPort = tsHttpPort;
|
||||
httpServer->cacheContext = tsHttpCacheSessions;
|
||||
|
|
|
@ -131,7 +131,7 @@ void monitorInitConn(void *para, void *unused) {
|
|||
|
||||
void monitorInitConnCb(void *param, TAOS_RES *result, int code) {
|
||||
if (code < 0) {
|
||||
monitorError("monitor:%p, connect to taosd failed, code:%d", monitor->conn, code);
|
||||
monitorError("monitor:%p, connect to database failed, code:%d", monitor->conn, code);
|
||||
taos_close(monitor->conn);
|
||||
monitor->conn = NULL;
|
||||
monitor->state = MONITOR_STATE_UN_INIT;
|
||||
|
@ -139,7 +139,7 @@ void monitorInitConnCb(void *param, TAOS_RES *result, int code) {
|
|||
return;
|
||||
}
|
||||
|
||||
monitorTrace("monitor:%p, connect to taosd success, code:%d", monitor->conn, code);
|
||||
monitorTrace("monitor:%p, connect to database success, code:%d", monitor->conn, code);
|
||||
monitorInitDatabase();
|
||||
}
|
||||
|
||||
|
|
|
@ -9,5 +9,5 @@ TDengine's JDBC driver jar is not yet published to maven center repo, so we need
|
|||
## Compile the Demo Code and Run It
|
||||
To compile the demo project, go to the source directory ``TDengine/tests/examples/JDBC/JDBCDemo`` and execute
|
||||
<pre>mvn clean assembly:single package</pre>
|
||||
The ``pom.xml`` is configured to package all the dependencies into one executable jar file. To run it, go to ``TDengine/tests/examples/JDBC/JDBCDemo/target`` and execute
|
||||
The ``pom.xml`` is configured to package all the dependencies into one executable jar file. To run it, go to ``examples/JDBC/JDBCDemo/target`` and execute
|
||||
<pre>java -jar jdbcdemo-1.0-SNAPSHOT-jar-with-dependencies.jar</pre>
|
||||
|
|
Loading…
Reference in New Issue