DoCmd Object.
The TransferDatabase method carries out the TransferDatabase action in Visual Basic. For more information on how the action and its arguments work, see the action topic.
DoCmd.TransferDatabase [transfertype], databasetype, databasename [,objecttype], source, destination [, structureonly] [, saveloginid]
The TransferDatabase method uses the following arguments.
You can leave an optional argument blank in the middle of the syntax, but you must include the argument’s comma. If you leave a trailing argument blank, don’t use a comma following the last argument you specify.
The administrator of an ODBC database can disable the feature provided by the saveloginid argument, requiring all users to enter the login ID and password each time they connect to the ODBC database.
CopyObject Method, DoCmd Object, Save Method, TransferDatabase Action, TransferSpreadsheet Method, TransferText Method.
This example imports the NW Sales for April report from the Microsoft Access database NWSales.mdb into the Corporate Sales for April report in the current database.
DoCmd.TransferDatabase acImport, "Microsoft Access", _ "C:\DBS\NWSales.mdb", acReport, "NW Sales for April", _ "Corporate Sales for April"
This example links the ODBC database table Authors to the current database.
DoCmd.TransferDatabase acLink, "ODBC Database", _ "ODBC;DSN=DataSource1;UID=User2;PWD=www;LANGUAGE=us_english;" _ & "DATABASE=pubs", acTable, "Authors", "dboAuthors"
Argument |
Description |
transfertype |
One of the following intrinsic constants: acImport If you leave this argument blank, the default (acImport) is assumed. |
databasetype |
A string expression that is the name of one of the types of databases you can use to import, export, or link data. In the Macro window, you can view the database types in the list for the Database Type action argument of the TransferDatabase action. |
databasename |
A string expression that is the full name, including the path, of the database you want to use to import, export, or link data. |
objecttype |
One of the following intrinsic constants: acTable This is the type of object whose data you want to import, export, or link. You can specify an object other than acTable only if you are importing or exporting data between two Microsoft Access databases. If you are exporting the results of a Microsoft Access select query to another type of database, specify acTable for this argument. If you leave this argument blank, the default (acTable) is assumed. |
source |
A string expression that is the name of the object whose data you want to import, export, or link. |
destination |
A string expression that is the name of the imported, exported, or linked object in the destination database. |
structureonly |
Use True (-1) to import or export only the structure of a database table. Use False (0) to import or export the structure of the table and its data. If you leave this argument blank, the default (False) is assumed. |
saveloginid |
Use True to store the login identification (ID) and password for an ODBC database in the connection string for a linked table from the database. If you do this, you don’t have to log in each time you open the table. Use False if you don’t want to store the login ID and password. If you leave this argument blank, the default (False) is assumed. This argument is available only in Visual Basic. |