January 4, 2006 at 8:58 am
I'm writing a package for SSIS and need to create a destination access database with a table on the fly. I've tried the code below - whcih works to create a database - but it doesn't create a table in that database to send data to. Instead of tbl.Parentcatalog = cat I've also used cat.Tables.Append(tbl) but this fails with a type problem. What is going wrong here??
private
static void CreateDatabase(string currentDirectory)
{
if (!File.Exists(currentDirectory + DESTINATIONNAME))
{
// Create Database
ADOX.
Catalog cat = new ADOX.CatalogClass();
cat.Create(
"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + currentDirectory + DESTINATIONNAME);
// Need to add columns using CREATE TABLE
ADOX.
Table tbl = new ADOX.TableClass();
tbl.Name =
"Currency";
tbl.Columns.Append(
"CurrencyCode", DataTypeEnum.adVarChar, 3);
tbl.Columns.Append(
"Name", DataTypeEnum.adVarWChar, 16);
tbl.Columns.Append(
"ModifiedDate", DataTypeEnum.adDate, 24);
tbl.ParentCatalog = cat;
}
}
January 4, 2006 at 9:30 am
replaced adVarWChar with DataTypeEnum.adWChar and it worked.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply