Click here to Skip to main content
Licence 
First Posted 29 Apr 2003
Views 100,485
Bookmarked 18 times

Reading Data from MSI Database

By | 29 Apr 2003 | Article
A console application to read data from a Windows Installer database

Introduction

I was in need of reading data from an .msi file and after reading a nice article in the form of a pdf file, I made a simple console application that takse 2 command line arguments (first is full path to .msi file second one is the table name). I prefered doing a console application because it will be useful to all even having MFC or windows knowledge.

Background

Last week I installed InstallShield for Windows Installer 1.5 on my system and some how I learned how to create an .msi setup file. I was in need of it as we planned to port the tool on which I'm working to the newer version of InstallShield. I searched for help but finally helped myself to learn how to create msi files with InstallShield. I wouldn't say I mastered InstallShield but I can say I know little bit of InstallShield.

Actually the tool for which I have been working on needs the details of .msi files to create MOF files, so I was trying to read the .msi database (.msi is a setup file implemented as a database by Microsoft and it is run by Windows Installer, a service which runs in Windows 2000 and Windows XP).

Using the Code

First location I refered is MSDN. It says what are the functions we have to manipulate a .msi database. But as my attempt to work myself with the MSDN help to read .msi databse didn't work. So I searched on net. and I got nic pdf file regarding this pdf file http://www.wise.com/filelib/MSIwhitepaper.pdf. Please read the article for a full description on "how to". I used the code help from this article only. The flow goes like this. First we have to start with MsiOpenDatabase(..) which gives a MSIHANDLE after successful opening of the msi database. Then I called MsiDatabaseOpenView(hDatabase,szSelect,&hView) where hDatabase is the handle got from MsiOpenDatabase(). szSelect is a normal SQL query, then hView is the MSIHANDLE returned by this function on success. This function when called creates a view with the given query. To get the actual records we have to call MsiViewExecute(), which gives the perfectness to the view(means practically this function executes the query and stores the result in the view) Then remaining part of the code is parsing the data and printing on the screen. I once again repeat the pdf I read is the source for my application. I thank "Gary Chirhart" for writing such a nice article on Installer. my application takes 2 command line arguments( other than application name)

  1. msi file path: rememeber to give the path with "\\" separation like D:\\Share\\VMTNet.msi
  2. A table name existing in .msi database. There are so many tables but I prefer to give "File" as 2nd parameter.This table contains all the details embedded files in the .msi database.

For better understanding of the database structure one can use "ORCA" tool.

Points of Interest

The interesting thing I learned is actually we don't need any third party tools like Installshield or wise Installer to create .msi setup files. Everything can be done by us The only thing the third party vendors are doing is making things simple so that we can concentrate on development of our software so that we need not worry much about creating installers to our software.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

harinath

Web Developer

United States United States

Member

Hi, all
 
I have been working on java/j2EE technologies, and some time back in Microsoft technologies.
 
http://harinathreddy.blogspot.com
 
Harinath Mallepally,
Hyderabad
India

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalthank you. Pinmembersanji200923:56 15 Apr '10  
GeneralGood info! PinmemberPortatofe6:02 2 Oct '08  
GeneralNeed examples Pinmemberz88712022:48 9 Aug '07  
GeneralThanks for a useful link PinmemberTroubleSolver13:26 20 Nov '05  
GeneralGood work Pinmemberjosephjk6:43 16 Sep '03  
QuestionVBScript anyone? PinmemberMike Klimentiev8:15 6 May '03  
AnswerRe: VBScript anyone? Pinmemberharinath17:29 6 May '03  
AnswerRe: VBScript anyone? PinmemberBlueLoveCyn17:25 18 Jul '06  
AnswerRe: VBScript anyone? PinmemberMike Klimentiev8:50 19 Jul '06  
GeneralNo Knowledge of Windows Installer PineditorHeath Stewart17:45 30 Apr '03  
GeneralRe: No Knowledge of Windows Installer Pinmemberharinath23:27 30 Apr '03  
GeneralRe: No Knowledge of Windows Installer PineditorHeath Stewart2:40 1 May '03  
GeneralRe: No Knowledge of Windows Installer Pinmemberharinath2:55 1 May '03  
GeneralRe: No Knowledge of Windows Installer PinsussAnonymous11:59 6 May '03  
GeneralRe: No Knowledge of Windows Installer Pinmemberharinath17:34 6 May '03  
GeneralRe: No Knowledge of Windows Installer PinsussAnonymous5:00 26 Apr '05  
you have such an attitude problem you f***** twat.
 
This kid is just asking for help.
GeneralRe: No Knowledge of Windows Installer PinmemberTroubleSolver13:23 20 Nov '05  
GeneralRe: No Knowledge of Windows Installer Pinmemberjbalaji8419:52 21 Dec '06  
GeneralRe: No Knowledge of Windows Installer Pinsusstom Stratemeyer14:54 15 Dec '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120528.1 | Last Updated 30 Apr 2003
Article Copyright 2003 by harinath
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid