Click here to Skip to main content
6,291,124 members and growing! (17,333 online)
Email Password   helpLost your password?
Desktop Development » Files and Folders » General     Intermediate

Reading Data from MSI Database

By harinath

A console application to read data from a Windows Installer database
VC6, VC7, VC7.1Win2K, WinXP, Win2003, MFC, Dev
Posted:29 Apr 2003
Views:78,163
Bookmarked:11 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
9 votes for this article.
Popularity: 2.52 Rating: 2.64 out of 5
1 vote, 11.1%
1
4 votes, 44.4%
2

3
1 vote, 11.1%
4
3 votes, 33.3%
5

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


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
Occupation: Web Developer
Location: United States United States

Other popular Files and Folders articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 18 of 18 (Total in Forum: 18) (Refresh)FirstPrevNext
GeneralGood info! PinmemberPortatofe7:02 2 Oct '08  
GeneralNeed examples Pinmemberz88712023:48 9 Aug '07  
GeneralThanks for a useful link PinmemberTroubleSolver14:26 20 Nov '05  
GeneralGood work Pinmemberjosephjk7:43 16 Sep '03  
GeneralVBScript anyone? PinmemberMike Klimentiev9:15 6 May '03  
GeneralRe: VBScript anyone? Pinmemberharinath18:29 6 May '03  
GeneralRe: VBScript anyone? PinmemberBlueLoveCyn18:25 18 Jul '06  
AnswerRe: VBScript anyone? PinmemberMike Klimentiev9:50 19 Jul '06  
GeneralNo Knowledge of Windows Installer PineditorHeath Stewart18:45 30 Apr '03  
GeneralRe: No Knowledge of Windows Installer Pinmemberharinath0:27 1 May '03  
GeneralRe: No Knowledge of Windows Installer PineditorHeath Stewart3:40 1 May '03  
GeneralRe: No Knowledge of Windows Installer Pinmemberharinath3:55 1 May '03  
GeneralRe: No Knowledge of Windows Installer PinsussAnonymous12:59 6 May '03  
GeneralRe: No Knowledge of Windows Installer Pinmemberharinath18:34 6 May '03  
GeneralRe: No Knowledge of Windows Installer PinsussAnonymous6:00 26 Apr '05  
GeneralRe: No Knowledge of Windows Installer PinmemberTroubleSolver14:23 20 Nov '05  
GeneralRe: No Knowledge of Windows Installer Pinmemberjbalaji8420:52 21 Dec '06  
GeneralRe: No Knowledge of Windows Installer Pinsusstom Stratemeyer15:54 15 Dec '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 29 Apr 2003
Editor: Heath Stewart
Copyright 2003 by harinath
Everything else Copyright © CodeProject, 1999-2009
Web11 | Advertise on the Code Project