No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: 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", … | |
Re: 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", … | |
Re: u can use login tool from the login tool box..... & also u can do the coding in c sharp. | |
Re: 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. |
The End.