Step 1 / source
Choose the source
Drop one file here
Choose the header-based csv table you want to turn into escaped sql insert script.
Checking publication status...LOCAL DATABASE CONVERTER / CSV TO SQL INSERT
Generate reviewable batched SQL INSERT statements from a rectangular CSV table without connecting to or modifying any database.
Step 1 / source
Choose the header-based csv table you want to turn into escaped sql insert script.
Checking publication status...This operation runs with browser APIs. Nirmion receives catalogue requests, not the selected source bytes.
The converter creates a separately named output. It never writes back into the source file.
One UTF-8 .csv file up to 5 MB, 50,000 data rows, 200 columns, 1,000,000 cells, statement batches from 1 to 1,000 rows, and 20 MB output.
Plain-language method
Nirmion parses one rectangular table, quotes every column identifier for the chosen dialect, escapes apostrophes and MySQL backslashes in string literals, maps empty cells by your rule, batches rows, and writes text only. It never opens a database connection.
Use a header row matching intended destination columns. All CSV values remain SQL strings unless an empty cell is mapped to NULL.
Choose the target dialect before review. Table names must be safe identifiers or schema.table; batch size changes statement count only.
The result ends in _nirmion_tools.sql and begins with a review reminder. Inspect it in version control or a database client before execution.
Useful when
Before converting
Know the boundary
Generated SQL is not a schema migration and is never automatically executed. Constraints, types, defaults, permissions, conflicts, transactions, and destination encoding remain your responsibility.
Quick answers
The conversion contract is deliberately explicit.
No. It only creates a downloadable SQL text file.
No. CSV has no reliable types, so non-empty values are escaped strings.
Review and test it first against the exact destination schema.