Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Append recors from an Access database to SQL7
Message
Information générale
Forum:
Visual Basic
Catégorie:
Bases de données DAO/RDO/ODBC/ADO
Divers
Thread ID:
00488590
Message ID:
00489492
Vues:
11
You have to use the OPENROWSET function
OPENROWSET('provider_name' 
    {
        'datasource';'user_id';'password' 
        | 'provider_string'
    }, 
    {
        [catalog.][schema.]object 
        | 'query'
    })
Exemple taken from MSDN
SELECT a.*

FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 
    'c:\MSOffice\Access\Samples\northwind.mdb';'admin';'mypwd', Orders) 
    AS a
Patrice Merineau
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform