This pretty easy: You'll have to set up your code to do an 'extended' insert:
INSERT INTO account VALUES
(1, 'Ad Credit Card Sale', 1.000),
(2, 'Affiliate Sale', 3.000),
(3, 'Service Charge', 150.000),
(4, 'Credit Card Fee', 100.000)
change your arrays to fit the extended insert format.
Note commas for each batch of data but the last.
Note that your DATA ELEMENTS must PRECISELY LINE UP with your table definition.
In other words:
If you have 3 columns:
INSERT INTO account VALUES
(1, 'Ad Credit Card Sale', 1.000),
(2, 'Affiliate Sale', 3.000)
Will work
INSERT INTO account VALUES
(1, 'Ad Credit Card Sale'),
(2, 'Affiliate Sale')
Will fail.
You can manage a null value 2 ways:
INSERT INTO account VALUES
(1, 'Ad Credit Card Sale', ''),
(2, 'Affiliate Sale', NULL)