Blueprints SQL Server Connector / UE4 | DTSQLServer plugin instructions

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

This plugin mainly supports connecting and operating SQL Server database in UE4 blueprint.

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

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.


在代码插件创建的MS SQL Server Connector - 虚幻引擎商城 (unrealengine.com)

相关实践学习
使用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 关系型数据库 MySQL
LINK JDBC SQL Connector遇到的类型转换问题
LINK JDBC SQL Connector遇到的类型转换问题
492 0
LINK JDBC SQL Connector遇到的类型转换问题
|
5月前
|
SQL 存储 API
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】(5)
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】
|
5月前
|
SQL 消息中间件 Java
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】(4)
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】
|
5月前
|
SQL Java API
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】(3)
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】
|
5月前
|
SQL 关系型数据库 数据库
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】(2)
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】
|
5月前
|
消息中间件 SQL 关系型数据库
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】(1)
Flink(十五)【Flink SQL Connector、savepoint、CateLog、Table API】
|
6月前
|
SQL 资源调度 NoSQL
实时计算 Flink版产品使用合集之使用Flink CDC SQL MongoDB Connector时,可以采取什么措施来提升数据消费速率
实时计算Flink版作为一种强大的流处理和批处理统一的计算框架,广泛应用于各种需要实时数据处理和分析的场景。实时计算Flink版通常结合SQL接口、DataStream API、以及与上下游数据源和存储系统的丰富连接器,提供了一套全面的解决方案,以应对各种实时计算需求。其低延迟、高吞吐、容错性强的特点,使其成为众多企业和组织实时数据处理首选的技术平台。以下是实时计算Flink版的一些典型使用合集。
101 0
SQL Server Connectors By Thread Pool | DTSQLServerTP plugin instructions
SQL Server Connectors By Thread Pool | DTSQLServerTP plugin instructions
65 0
|
SQL JSON 数据库连接
Blueprints Microsoft SQL Server Connector / UE4 | DTSQLServer插件使用说明
Blueprints Microsoft SQL Server Connector / UE4 | DTSQLServer插件使用说明
101 0
|
SQL 存储 NoSQL
Flink SQL 自定义 redis connector
一般情况下,我们不需要创建新的 connector,因为 Flink SQL 已经内置了丰富的 connector 供我们使用,但是在实际生产环境中我们的存储是多种多样的,所以原生的 connector 并不能满足所有用户的需求,这个时候就需要我们自定义 connector,这篇文章的重点就是介绍一下如何实现自定义 Flink SQL connector ? 先来看一下官网的一张 connector 架构图:
Flink SQL 自定义 redis connector