Re: Make column indexed
- From: "Brian Hollister" <bhollisterATfuturaintlDOTcom>
- Date: Fri, 18 May 2007 09:05:45 -0400
Check the VBA help files. They should be located with the other help files
in your installed directory.
--
Got a big event coming up? Let us
help coordinate your event. For more
visit www.kissemgoodbye.com
"MikeR" <nf4lNoSpam@xxxxxxxxx> wrote in message
news:464d061a@xxxxxxxxxxxxxxxxxxxxxxxxx
Using ADOX I'm able to add an AutoIncrement column to an MS Access table.I'd like to
make it indexed as well. Tricks and tips? Any place to see the constantslike
AutoIncrement?
with col do
begin
ParentCatalog := cat;
Name := fName;
Type_ := adInteger;
Properties['AutoIncrement'].Value := true;
//Properties['indexed'].Value := true; <==============
table.Columns.Append(col, Unassigned, Unassigned);
end;
Thanks, Mike
.
- Follow-Ups:
- Re: Make column indexed
- From: Brian Hollister
- Re: Make column indexed
- References:
- Make column indexed
- From: MikeR
- Make column indexed
- Prev by Date: Re: Multiple Steps OLE DB generated errors.
- Next by Date: Re: Make column indexed
- Previous by thread: Make column indexed
- Next by thread: Re: Make column indexed
- Index(es):
Relevant Pages
|