Board index » delphi » Problem with ADOX changing the property Jet OLEDB:Allow Zero Length
P.D.C. Wessels
![]() Delphi Developer |
Thu, 29 Jan 2004 03:19:24 GMT
Problem with ADOX changing the property Jet OLEDB:Allow Zero Length
With following code I'm creating a table with columns, but if I try to
change the value for the column-property Jet OLEDB:Allow Zero Length I get the error "Item cannot be found in the collection corresponding to the requested name or ordinal". I'm using Delphi 5, with Access97 var Tbl := CreateCOMObject(Class_Table) as Table; // CoTable.Create kan ook Col := CreateCOMObject(Class_Column) as Column; Col:=CreateCOMObject(Class_Column) as Column; Cat.Tables.Append(tbl); Thanks for any help. Best regards, Paul D.C. Wessels |