Application.ImportXML Method (Access)
The ImportXML method allows developers to import XML data and/or schema information into Microsoft SQL Server 2000 Desktop Engine (MSDE 2000), Microsoft SQL Server 7.0 or later, or the Microsoft Access database engine.
Syntax
식 .ImportXML(DataSource, ImportOptions)
식 A variable that represents an Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
DataSource |
필수 |
String |
The name and path of the XML file to import. |
ImportOptions |
선택 |
AcImportXMLOption |
A AcImportXMLOption constant that specifies the option to use when importing XML files. The default value is acStructureAndData. |
Return Value
Nothing
Example
The following example imports an XML file into a new table named Employees in the current database.
Application.ImportXML _
DataSource:="employees.xml", _
ImportOptions:=acStructureAndData