Connect Database
hi how to connect the my sql in asp.net
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Deepak SharmaPosted Feb 3, 2012, 4:10 AM
string conString="server=localhost;user id=root;Password=deepak00;database=nrega2";
MySqlConnection con=new MySqlConnection(conString);
Satyapriya NayakPosted Feb 2, 2012, 8:02 AM
Try this...
Ex:- Login form
' Import the ODBC namespace for MySQL Connection
Imports System.Data.Odbc
Partial Class login
Inherits System.Web.UI.Page
Protected Sub Login1_Authenticate(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles Login1.Authenticate
Dim cn As New OdbcConnection("Driver={MySQL ODBC 3.51 Driver};Server=localhost;Database=mydb; User=root;Password=;")
cn.Open()
Dim cmd As New OdbcCommand("Select * from login where username=? and password=?", cn)
'Add parameters to get the username and password
cmd.Parameters.Add("@username", OdbcType.VarChar)
cmd.Parameters("@username").Value = Me.Login1.UserName
cmd.Parameters.Add("@password", OdbcType.VarChar)
cmd.Parameters("@password").Value = Me.Login1.Password
Dim dr As OdbcDataReader
' Initialise a reader to read the rows from the login table.
' If row exists, the login is successful
dr = cmd.ExecuteReader
If dr.HasRows Then
e.Authenticated = True
' Event Authenticate is true
End If
End Sub
End Class
Refer the below link for more
http://dotnet.tekyt.info/?p=31
http://www.codeguru.com/csharp/.net/net_data/article.php/c19493
Thanks
Mayur GujrathiPosted Feb 2, 2012, 7:31 AM
Prakash SelladuraiPosted Feb 2, 2012, 6:57 AM