Re: [WiX-users] Creating database table via DTF - SQL syntax

2009-09-01 Thread Tony Juricic
It was the length of the string in second 'Value' column - it must be at most 255 characters. -Original Message- From: Tony Juricic Sent: Tuesday, September 01, 2009 2:09 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Creating database table via DTF - SQL synta

[WiX-users] Creating database table via DTF - SQL syntax

2009-09-01 Thread Tony Juricic
This is probably not DTF specific issue. I have code to add a table to MSP file: using (Database db = new Database(file, DatabaseOpenMode.Transact)) { ColumnInfo[] arrc = new ColumnInfo[2] { new ColumnInfo("Key", typeof(string), 32, true), new ColumnInfo("Value", typeof(string), 25