跳到主要内容

MySQL数据写入组件

  • 组**件用途:**接收sql语句,将数据写入或者更新到指定的mysql数据库的表中
  • 组件输入:字符串数据,insert或者update、delete等语句,例如
insert into test(a, b, c) values (1, 1, 1), (2, 2, 2)
  • 组件输出:无,数据写入外部Mysql数据库
  • 组件参数
    • Mysql服务器地址:ip或者hostname
    • Mysql服务器端口:默认为3306
    • 用户名
    • 密码
    • 数据库名称