CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Guest

    Importing in a Database

    How can I Import the tables from a Btrieve database(I have it setup in the DSN) into an Access .mdb database? The Btrieve driver I'm using does not support some of the functionality I need. Thus I need to import it into Access so that I can work with it. Thanks.



  2. #2
    Guest

    Re: Importing in a Database

    There are several method but I think this would be preferable
    1--->
    Add Access library reference in your project and use DOCMD method, Once you will add the reference it will give you the tip.

    2--->
    Create the resultset from both the database and loop thru the resultset.



  3. #3
    Join Date
    Nov 1999
    Posts
    7

    Re: Importing in a Database

    There are several method but I think this would be preferable
    1--->
    Add Access library reference in your project and use DOCMD method, Once you will add the reference it will give you the tip.

    2--->
    Create the resultset from both the database and loop thru the resultset.



  4. #4
    Join Date
    Nov 1999
    Posts
    40

    Re: Importing in a Database

    Thanks! I will give those a try.


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