msilib.add_data(database, table, records)
Add all records to the table named table in database.
The table argument must be one of the predefined tables in the MSI schema, e.g. 'Feature'
, 'File'
, 'Component'
, 'Dialog'
, 'Control'
, etc.
records should be a list of tuples, each one containing all fields of a record according to the schema of the table. For optional fields, None
can be passed.
Field values can be ints, strings, or instances of the Binary class.
Please login to continue.