BOTAO EXCLUIR

CLAUDIOLOPES 08/04/2010 11:55:27
#338863
Bom dia a todos!

Desculpem minha ignorancia, porém estou tentando aprender a programar no vb 2008 e estou sem conseguir concluir meu form cadastro pois não consigo codificar o botão EXCLUIR. Alguém poderia me ajudar? Tentei usar DataSet igual usei para o INSERT e UPDATE, mas não funcionou eis minha declaração no botão SALVAR:
dim flg_gcl as String

flg_gcl = Me.MotoristaTableAdapter.DELETE_MOT(CInt(lbl_ID.Text), txt_codmot.Text, txt_nomemot.Text, txt_endmot.Text, txt_bairromot.Text, txt_cidademot.Text, txt_cepmot.Text, _
txt_ufmot.Text, txt_fonemot.Text, txt_cpfmot.Text, txt_cnhmot.Text)

[ô]DELETE[ô]Motorista[ô]
[ô]SET
[ô][ô]ID_mot[ô]=?,
[ô][ô]Codigo_mot[ô]=?,
[ô][ô]Nome_mot[ô]=?,
[ô][ô]Endereco_mot[ô]=?,
[ô][ô]Bairro_mot[ô]=?,
[ô][ô]Cep_mot[ô]=?,
[ô][ô]UF_mot[ô]=?,
[ô][ô]FoneF_mot=?,
[ô][ô]CPF_mot[ô]=?,
[ô][ô]CNH_mot[ô]=?

Obrigado por qualquer ajuda...
KILLER 08/04/2010 13:22:14
#338875
para deletar uma linha no dataset:

ds.Tables(T).Rows(L).Delete()

onde T seria o index da tabela e L seria a linha a ser excluída
OTAVIOFAVERO 09/04/2010 03:27:58
#338907
Resposta escolhida
olha ai não espalha!


MySqlDataAdapter objAdapterDelete = new MySqlDataAdapter();
String SQLStringDelete = [Ô][Ô];
SQLStringDelete = [Ô]DELETE FROM categoria where id=[ô]34[ô][Ô];
objAdapterDelete.SelectCommand = new MySqlCommand(SQLStringDelete, connexao());
DataSet dsDelete = new DataSet();
objAdapterDelete.Fill(dsDelete);
dsDelete.Dispose();
objAdapterDelete.Dispose();



ai e so alterar o adaptador aki no codigo eu coloquei mysql mas vc pode usar em acess ou mssql e so trocar 2 linhas do codigo para o adaptador do seu banco de dados!! abç
OTAVIOFAVERO 09/04/2010 03:31:39
#338908
caso vc queira usar em vb.net use ou vice versa!!!!!!

http://www.carlosag.net/Tools/CodeTranslator/

ao invez de c#

abç
Tópico encerrado , respostas não são mais permitidas