What problem does it solve?
This Skill addresses the complexity of writing and executing MySQL's LOAD DATA statements by providing a comprehensive method chain interface, simplifying the process of data loading into MySQL databases.
Core Features & Use Cases
- MySQL LOAD DATA Method Chain: Offers a method chain to build complex LOAD DATA statements programmatically.
- File Importation: Enables batch data import from files into MySQL tables.
- Data Manipulation: Allows for options like LOCAL, REPLACE/IGNORE, character set, field/column format, partitioning, and SET clauses.
- Use Case: When you need to load a large dataset from a CSV file into a MySQL table with specific configurations, such as ignoring duplicates or replacing existing data.
Quick Start
Use the mysql-loaddata-stmt skill to import data from 'data.csv' into 'my_table' with the ignore option and the utf8mb4 character set.