Using C# is it possible to programatically import a report from one db to another?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dave Urbanski

    Using C# is it possible to programatically import a report from one db to another?

    I have a C# application that interfaces an MS Access db. Can I import new reports from a new Access db to the existing (original)one?
  • Mihai Popescu
    New Member
    • Jul 2010
    • 4

    #2
    yes, create 2 connections, for each database... create a Select command for second db and one Insert command for the first one

    Comment

    • Dave Urbanski

      #3
      It's not the data that I want to import, but the report itself.

      Comment

      Working...