CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 1999
    Posts
    1

    Adding a new table

    How can I add a table to an existing Access database. Require a field type of AutoNumber and a DELETE CASCADE relationship to another table. I already try to execute SQL.


  2. #2
    Join Date
    Jul 1999
    Location
    Lodz, Poland
    Posts
    26

    Re: Adding a new table

    Use data type COUNTER to create autonumber column. ( CREATE TABLE TAB_Account (f_ID COUNTER CONSTRAINT c_primary PRIMARY KEY, ... ) ). Check MS Access Help for available types and CREATE TABLE syntax.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured