2016-09-27 21:41:24 +00:00
|
|
|
table_name("programs", aliases=["programs_and_features"])
|
2016-09-23 21:33:44 +00:00
|
|
|
description("Rrepresents products as they are installed by Windows Installer. A product generally correlates to one installation package.")
|
|
|
|
schema([
|
|
|
|
Column("name", TEXT, "Commonly used product name."),
|
|
|
|
Column("version", TEXT, "Product version information."),
|
|
|
|
Column("install_source", TEXT, "The installation source directory of the product."),
|
|
|
|
Column("language", TEXT, "The language of the product."),
|
|
|
|
Column("publisher", TEXT, "Name of the product supplier."),
|
|
|
|
Column("uninstall_string", TEXT, "Path and filename of the uninstaller."),
|
|
|
|
Column("install_date", TEXT, "Date that this product was installed on the system. "),
|
|
|
|
Column("identifying_number", TEXT, "Product identification such as a serial number on software, or a die number on a hardware chip."),
|
|
|
|
])
|
|
|
|
implementation("programs@genPrograms")
|
|
|
|
examples([
|
2016-09-27 21:41:24 +00:00
|
|
|
"select * from programs",
|
2016-09-23 21:33:44 +00:00
|
|
|
])
|