12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- {
- "about": {
- "trial": true,
- "author": {
- "name": "EMQ",
- "email": "contact@emqx.io",
- "company": "EMQ Technologies Co., Ltd",
- "website": "https://www.emqx.io"
- },
- "helpUrl": {
- "en_US": "https://github.com/lf-edge/ekuiper/blob/master/docs/en_US/rules/sinks/plugin/sql.md",
- "zh_CN": "https://github.com/lf-edge/ekuiper/blob/master/docs/zh_CN/rules/sinks/plugin/sql.md"
- },
- "description": {
- "en_US": "This a sink plugin for Sql based Database, it can be used for saving the analysis data into Sql based database.",
- "zh_CN": "本插件为 SQL Database 的持久化插件,可以用于将分析数据存入支持 SQL 语法的数据库中"
- }
- },
- "libs": [
- ],
- "properties": [{
- "name": "url",
- "default": "",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "The url of the database",
- "zh_CN": "数据库服务器的 URL"
- },
- "label": {
- "en_US": "server address",
- "zh_CN": "数据库地址"
- }
- }, {
- "name": "table",
- "default": "",
- "optional": false,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "Table name",
- "zh_CN": "表名"
- },
- "label": {
- "en_US": "Table name",
- "zh_CN": "表名"
- }
- }, {
- "name": "tableDataField",
- "default": "",
- "optional": true,
- "control": "text",
- "type": "string",
- "hint": {
- "en_US": "table Data from Stream Field",
- "zh_CN": "表数据来源"
- },
- "label": {
- "en_US": "Table Data from Stream Field",
- "zh_CN": "表数据来源"
- }
- }, {
- "name": "fields",
- "default": [],
- "optional": true,
- "control": "list",
- "type": "list_string",
- "hint": {
- "en_US": "Field of table",
- "zh_CN": "表字段"
- },
- "label": {
- "en_US": "Table field",
- "zh_CN": "表字段"
- }
- }
- ]
- }
|