Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~9K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for sknake

SqlConnection con = new SqlConnection(strConn); string strCmd = "select UserName, Password from Login where UserName='" + txtUserName.Text + "' and Password ='" + txtPassword.Text + "'"; SqlCommand cmd = new SqlCommand(strCmd, con); SqlDataAdapter da = new SqlDataAdapter(strCmd, con); DataSet ds = new DataSet(); con.Open(); cmd.ExecuteNonQuery(); da.Fill(ds); con.Close(); MessageBox.Show("Login successful", "Success", …

Member Avatar for pritaeas
10
8K
Member Avatar for mentos16

SqlConnection con = new SqlConnection(strConn); string strCmd = "select UserName, Password from Login where UserName='" + txtUserName.Text + "' and Password ='" + txtPassword.Text + "'"; SqlCommand cmd = new SqlCommand(strCmd, con); SqlDataAdapter da = new SqlDataAdapter(strCmd, con); DataSet ds = new DataSet(); con.Open(); cmd.ExecuteNonQuery(); da.Fill(ds); con.Close(); MessageBox.Show("Login successful", "Success", …

Member Avatar for KazenoZ
-1
93
Member Avatar for Gowrishankar
Member Avatar for afjal nathani
0
412
Member Avatar for pritesh2010

How to recover data from .ibd file if innodb is corrupted I have one test database and many table with the extension of .frm and .idb file. from frm file i got strucure of database but how to restore data from individiual file of .idb file.

Member Avatar for mwasif
0
480

The End.