I'm trying to do an update in my database through Visual Studio (C #), however the update is not being performed I do not know why.
Table Script ( sql developer
):
CREATE TABLE Login
(
Cod_login NUMBER(8) NOT NULL,
Usuario VARCHAR2(50) NOT NULL,
Senha VARCHAR2(50) NOT NULL,
cod_Nivel number(5)NOT NULL,
Status_Login CHAR(1) NOT NULL,
CONSTRAINT PK_Cod_login_Login PRIMARY KEY (Cod_login)
);
C # update script:
public void AlterarSenha(string usuario)
{
string strQuery;
strQuery = (" UPDATE Login ");
strQuery += (" SET ");
strQuery += ("senha = '" + _senha + "' ");
strQuery += (", Status_Login ='" + 1 + "'");
strQuery += (" WHERE ");
strQuery += (" usuario = '" + _usuario + "' ");
clnBancoDados ObjClnBancoDados = new clnBancoDados();
ObjClnBancoDados.ExecutaComando(strQuery);
}
public void Alterar()
{
if (txtnovasenha.Text == "")
{
MessageBox.Show("Digite Sua Nova Senha!");
}
if ((txtnovasenha.Text.Length < 4))
{
MessageBox.Show("A Senha Deve Conter no Mínimo 4 Digitos!");
}
if ((txtnovasenha.Text.Length > 8))
{
MessageBox.Show("A Senha Deve Conter no Máximo 8 Digitos!");
}
else
{
clnlogin login = new clnlogin();
login.Senha = txtnovasenha.Text;
login.AlterarSenha(txtLogin.Text);
MessageBox.Show("A Senha do Usuário "
+ txtLogin.Text + " foi Alterada com Sucesso para "
+ login.Senha + "!",
"Alteração", MessageBoxButtons.OK, MessageBoxIcon.Information);
It shows the message, but does not perform the update. I tried to change several things but I could not. Did I do something wrong?