\
Windows Installer FAQ (the basics)
Return Codes and Error Codes or Text
Error Codes
2205 - Database: [2]. Table does not exist: [3]
2205 - Database: [2]. Table does not exist: [3] |
Like message "2228", this message is typically
produced if a table doesn't exist, see that message for more information.
Example of Creating Tables Safely |
<$TableCreate "Class" ExistingOK="Y" DropExisting="N">
<$TableCreate "TypeLib" ExistingOK="Y" DropExisting="N">
The "ExistingOK" and "DropExisting" parameters were added for safety, we are doing this step because the tables don't exist however you may some time in the future add code which may create it and you would not want to lose its contents.