Postada em 01/03/2011 14:13 hs
Ou você pode fazer assim, concatenando...
Sql = "UPDATE CLIENTES SET NOME = '" & txtNome.Text & "'," Sql = Sql & "TELEFONE = " & mskTelefone.Text & "," Sql = Sql & "ESTADOS = '" & cboEstados.Text & "'," Sql = Sql & "CEP = " & mskCEP.Text & "," Sql = Sql & "DATA = " & mskData.Text & "," Sql = Sql & "SITUACAO = " & optDesativado.Value Sql = Sql & "WHERE CODIGO = " & txtCodigo.Text & ";"
|