Generates UPDATE or INSERT statements from a CSV for MSSQL, PostgreSQL, or MySQL. For UPDATE mode, assumes the first column is the identity key (e.g., CaseNumber) and all other columns are updated per row. For INSERT mode, generates INSERT statements for all columns.
Tips:
• Empty cells become NULL unless "Skip blanks" is enabled.
• Numbers are emitted as-is; true/false → 1/0; everything else is single-quoted with embedded quotes
doubled.
• Identifiers are quoted according to the selected database type (MSSQL: [brackets], PostgreSQL: "quotes", MySQL: `backticks`).
• UPDATE mode uses the identity column as WHERE condition; INSERT mode includes all columns.
• In INSERT mode, enable "Exclude auto-increment ID" to omit auto-generated columns from INSERT statements.