Crate msi

source ·
Expand description

A library for reading/writing Windows Installer (MSI) files.

A Windows Installer file, or MSI file, represents a Windows software package and a declarative description of how it should be installed. An MSI file consists of a relational database stored within a Compound File Binary file.

Structs

  • A database column.
  • A factory for configuring a new database column.
  • A database query to delete existing rows.
  • An expression on database rows that can be used in queries.
  • A database query to insert new rows.
  • Represents a particular language/dialect.
  • An MSI package file, backed by an underlying reader/writer (such as a File or Cursor).
  • One row from a database table.
  • An iterator over the rows in a database table.
  • A database query to select rows.
  • An IO reader for an embedded binary stream in a package.
  • An IO writer for an embedded binary stream in a package.
  • An iterator over the names of the binary streams in a package.
  • Summary information (e.g. title, author) about an MSI package.
  • A database table.
  • An iterator over the database tables in a package.
  • A database query to update existing rows.

Enums

  • Indicates the format of a string-typed database column.
  • A Windows code page.
  • A database column data type.
  • The type of MSI package (e.g. installer or patch).
  • A value from one cell in a database table row.

Functions

  • Opens an existing MSI file at the given path in read-only mode.
  • Opens an existing MSI file at the given path in read-write mode.