更新动态库
This commit is contained in:
tslediter 2024-04-28 09:39:09 +08:00
parent b51cbcf968
commit e04ba21b4a
9 changed files with 9 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -534,7 +534,7 @@ function pthread_create(f,p):integer;
begin
//attr := new pthread_attr_t();pthread_attr_init(attr);attr._setvalue_("stacksize",10240000);
pth := 0;
_f_ := static function(var thread:pointer;attr:pointer; f:pointer;arg:pointer):integer;cdecl; external getdlsymaddress( "libc.so.6" ,functionname(1));
_f_ := static function(var thread:pointer;attr:pointer; f:pointer;arg:pointer):integer;cdecl; external getdlsymaddress( "libpthread.so.0" ,functionname(1));
if 0= ##_f_(pth,0,f,p) then return pth;
end
/////////////////////gthread///////////////////////////////

Binary file not shown.

BIN
tsjni.dll

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,11 @@
更新日志--------2024-04-26
修订JDBC连接模式的功能
增加对ftBytes的支持
TS-SQL insert/update SQLTABLE操作支持数值类型列传入字符串值
Execsql执行中如果发生错误将错误信息返回给result参数
TS-SQL和ExecSql执行中如果发生错误在TSL日志中增加连接串别名和SQL
修订SQLBeginTrans函数实现层支持JDBC连接模式options
更新日志--------2024-04-25
修订:特殊错误表达式导致的问题(正常使用不受影响)。