The pattern can be illustrated by the following pseudocode:
product = new Product()
product.name = "Some Book"
product.price = 123.45
product.save()
The following SQL would be a result:
INSERT INTO products (name, price) VALUES ('Some Book', 123.45);