Click here to Skip to main content
15,893,266 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I was wondering how to connect to the database for a login form i am making in Ms Access. This is the code what i have been trying as you can code in VB from Access Forms.
Set driver = "Microsoft Access Driver (*.mdb)"
    Set dbfile = "G:\Databases\Game\Games.mdb"
    
    If (![file exists $dbfile]) Then
        MsgBox ("Cannot Connect To the Database!");
    End If
    
    database connect db "DRIVER=$driver;DBQ=$dbfile"


Any suggestions on how to fix it?
Posted

 
Share this answer
 
By using this code we connect ms access to .net in c#


using System.Data.Oledb;

OleDbConnection cn = new OleDbConnection("Provider=microsoft.jet.oledb.4.0;datasource=e:/database/herohonda.mdb");
cn.Open();
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900