VB.NET creazione Database?

di il
2 risposte

VB.NET creazione Database?

Ciao a Tutti, ho appena iniziato programmare con VB.NET.
Mi sembra che al ambiente Net manca una funzione che da la possibilità di creare un database (per esempio MS Access) tramite codice.
Grazie in anticipo



Fabian Dialer
http://www.vegasw.co

2 Risposte

  • Re: VB.NET creazione Database?

    Guarda questo: http://support.microsoft.com/default.aspx?scid=KB;EN-US;317867

    Ciao.

    SuperCap



    (Le risposte che lascio sono limitate alle mie conoscenze sull'argomento trattato. Quindi potrei anche sbagliare!)
  • Re: VB.NET creazione Database?

    Oppure per creare il solo file .mdb vuoto puoi:

    Imports ADOX
    Imports System.IO

    Dim myDatabase As File
    If Not myDatabase.Exists("MyOffice.mdb") Then
    Dim dbMyOffice As Catalog = New Catalog
    dbMyOffice.Create("Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=MyOffice.mdb;Jet OLEDB:Engine Type=5")
    dbMyOffice = Nothing
    End If

    Ciao.

    SuperCap



    (Le risposte che lascio sono limitate alle mie conoscenze sull'argomento trattato. Quindi potrei anche sbagliare!)
Devi accedere o registrarti per scrivere nel forum
2 risposte