Authing DocsDocuments
Concept
workflow
Guides
Development Integration
Application integration
Concept
workflow
Guides
Development Integration
Application integration
Old Version
workflow
  • An overview of identity automation
  • Quick start

  • Write Workflow

  • Execute Workflow

  • Operate internal resources of Authoring
  • Using application connectors

    • HTTP Request
    • PostgreSQL
    • MySQL
    • MongoDB
    • Microsoft SQL
    • Feishu
  • Process control nodes

  • Data processing nodes

  • Workflow customization capability

  • Using templates

  1. workflow
  2. /
  3. Using application connectors

  4. /
  5. MySQL

¶ MySQL

MySQL applications allow you to operate MySQL databases in Authing identity automation, including executing queries, inserting data, updating data, and more.

¶ Preparation work

If you have not yet created a MySQL database, please create it first. 2. Automatically configure your MySQL database key in Authoring identity.

¶ Supported operations

  1. Execute query
  2. Insert data
  3. Update data

¶ Basic examples

Firstly, in your MySQL database, create a test table. Here, we create a users user table with three fields:id,name, and email, and insert several test data:

CREATE TABLE `users` (
  `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
  `name` varchar(64) NOT NULL DEFAULT '' COMMENT 'name',
  `email` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '' COMMENT 'mailbox',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='User Table';

INSERT INTO `users` (`id`, `name`, `email`) VALUES
(1, 'Bob', 'bob@example.com'), 
(2, 'Lucy', 'lucy@example.com');

Set the operation of MySQL nodes to execute queries and write in query statements select * from users limit 10:

Execution node:

Prev: PostgreSQL Next: MongoDB
  • Preparation work
  • Supported operations
  • Basic examples

User identity management

Integrated third-party login
Mobile phone number flash check (opens new window)
Universal login form component
Custom authentication process

Enterprise internal management

Single Sign On
Multi-factor Authentication
Authority Management

Developers

Development Document
Framework Integration
Blog (opens new window)
GitHub (opens new window)
Community User Center (opens new window)

Company

400 888 2106
sales@authing.cn
16 / F, Block B, NORTH STAR CENTURY CENTER, Beijing(Total)
room 406, 4th floor, zone B, building 1, No. 200, Tianfu Fifth Street, Chengdu(branch)

Beijing ICP No.19051205-1

© Beijing Steamory Technology Co.