SQL Server Connectors By Thread Pool | DTSQLServerTP plugin instructions

本文涉及的产品
云数据库 RDS SQL Server,基础系列 2核4GB
RDS SQL Server Serverless,2-4RCU 50GB 3个月
推荐场景:
简介: SQL Server Connectors By Thread Pool | DTSQLServerTP plugin instructions

This plugin mainly supports the use of thread pool asynchronous connection and asynchronous operation of SQL Server database in UE4 blueprint.


The linking and executing SQL used by this plug-in are asynchronous operations, which will not block the main painting thread and improve the running efficiency. The Completed node of the blueprint will not be called back until the database returns.

1. Database connection 【 Create SQL Server】


Enter:

Host: database IP address


Port: database open port


User: database username


Password: database password


DBName: Specifies the database library name of the connection


Thread Pool Count:The number of connection threads


Output:

Success: Returns whether the database connection is successful


Error No: The connection error returns the error number, and the success returns 0


Error Msg: Connection error returns error message


2. Operate the database [Execute SQL]


Enter:

SQL: SQL statement to execute, supports SELECT, DELETE, INSERT, UPDATE, EXEC. Basically all SQL statements are supported, and the database can be manipulated directly here.

Some knowledge of SQL syntax is required.


Output:

Success: Returns whether the operation was executed successfully


Error No: Error number, returns 0 successfully


Error Msg: Execution error returns error message


Result: Returns the database result set.


3. Result set decomposition

The result set returned by Result is an array of MAP, an array is equal to the information of one row, and the data of this row is stored in a MAP.


You can also use the built-in function of this plugin to convert the output result set to JSON.


相关实践学习
使用SQL语句管理索引
本次实验主要介绍如何在RDS-SQLServer数据库中,使用SQL语句管理索引。
SQL Server on Linux入门教程
SQL Server数据库一直只提供Windows下的版本。2016年微软宣布推出可运行在Linux系统下的SQL Server数据库,该版本目前还是早期预览版本。本课程主要介绍SQLServer On Linux的基本知识。 相关的阿里云产品:云数据库RDS SQL Server版 RDS SQL Server不仅拥有高可用架构和任意时间点的数据恢复功能,强力支撑各种企业应用,同时也包含了微软的License费用,减少额外支出。 了解产品详情: https://www.aliyun.com/product/rds/sqlserver
相关文章
|
SQL JSON Java
SQL Server Connectors By Thread Pool | DTSQLServerTP 插件使用说明
SQL Server Connectors By Thread Pool | DTSQLServerTP 插件使用说明
90 0
Blueprints SQL Server Connector / UE4 | DTSQLServer plugin instructions
Blueprints SQL Server Connector / UE4 | DTSQLServer plugin instructions
40 0
|
SQL 存储 缓存
MySQL的逻辑架构--逻辑架构剖析、SQL执行流程、数据库缓冲池(buffer pool)
MySQL的逻辑架构--逻辑架构剖析、SQL执行流程、数据库缓冲池(buffer pool)
269 1
MySQL的逻辑架构--逻辑架构剖析、SQL执行流程、数据库缓冲池(buffer pool)
|
SQL 数据库 Windows
MS SQL错误:SQL Server failed with error code 0xc0000000 to spawn a thread to process a new login or connection. Check the SQL Server error log and the W
早晨宁波那边的IT人员打电话告知数据库无法访问了。其实我在早晨也发现Ignite监控下的宁波的数据库服务器出现了异常,但是当时正在检查查看其它服务器发过来的各类邮件,还没等到我去确认具体情况,就收到了电话。
1919 0
|
SQL 关系型数据库 Oracle
[20120229]无效sql语句与shared pool的问题.txt
昨天遇到一些程序的bug,因为查询要显示1年的信息,因为2011年没有2月29号,导致查询出错。由此想到另外的问题,如果查询存在这些语句,会保留在共享池吗?自己做了一个测试:SQL> select * from v$version; BANNER -------...
629 0
|
2月前
|
SQL 数据库
数据库数据恢复—SQL Server数据库报错“错误823”的数据恢复案例
SQL Server附加数据库出现错误823,附加数据库失败。数据库没有备份,无法通过备份恢复数据库。 SQL Server数据库出现823错误的可能原因有:数据库物理页面损坏、数据库物理页面校验值损坏导致无法识别该页面、断电或者文件系统问题导致页面丢失。
100 12
数据库数据恢复—SQL Server数据库报错“错误823”的数据恢复案例
|
12天前
|
存储 数据挖掘 数据库
数据库数据恢复—SQLserver数据库ndf文件大小变为0KB的数据恢复案例
一个运行在存储上的SQLServer数据库,有1000多个文件,大小几十TB。数据库每10天生成一个NDF文件,每个NDF几百GB大小。数据库包含两个LDF文件。 存储损坏,数据库不可用。管理员试图恢复数据库,发现有数个ndf文件大小变为0KB。 虽然NDF文件大小变为0KB,但是NDF文件在磁盘上还可能存在。可以尝试通过扫描&拼接数据库碎片来恢复NDF文件,然后修复数据库。
|
2月前
|
SQL 关系型数据库 MySQL
创建包含MySQL和SQLServer数据库所有字段类型的表的方法
创建一个既包含MySQL又包含SQL Server所有字段类型的表是一个复杂的任务,需要仔细地比较和转换数据类型。通过上述方法,可以在两个数据库系统之间建立起相互兼容的数据结构,为数据迁移和同步提供便利。这一过程不仅要考虑数据类型的直接对应,还要注意特定数据类型在不同系统中的表现差异,确保数据的一致性和完整性。
31 4