SQL

Simple Serialized SQL Inserts

Working with SQL is pretty straight forward. Once can easily parse xml, json, or just csv and insert values into new rows in a database. Here, we’ll insert two fields, user_name and role_name into a new row in a table called krypted:

INSERT INTO krypted (user_name, role_name) VALUES (krypteduser, admingroup);