MikleCod Posted June 24, 2022 at 07:24 PM Report Share #626296 Posted June 24, 2022 at 07:24 PM Boa tarde malta, eu estava a fazer um programa pessoal, e encravei no botão inserir na base de dados. Este é o codigo, e sempre que executo e carrego no botão para inserir, retorna-me, a dizer que é impossivel, não estou a conseguir descobrir o erro! Alguem me consegue ajudar? private void button1_Click(object sender, EventArgs e) { try { con.Open(); OleDbCommand cmd = new OleDbCommand("INSERT INTO olicarros(Marca, Modelo, Ano, Kms, Cor do Carro, Preco de Venda) Values (@m, @mo, @ano, @kms, @c, @pv)", con); cmd.Parameters.AddWithValue("@m", textBox1.Text); cmd.Parameters.AddWithValue("@mo", textBox4.Text); cmd.Parameters.AddWithValue("@ano", textBox2.Text); cmd.Parameters.AddWithValue("@kms", textBox5.Text); cmd.Parameters.AddWithValue("@c", textBox3.Text); cmd.Parameters.AddWithValue("@pv", textBox6.Text); cmd.ExecuteNonQuery(); MessageBox.Show("Registado com Sucesso"); con.Close(); } catch { MessageBox.Show("Impossivel Registar"); } } Link to comment Share on other sites More sharing options...
M6 Posted June 27, 2022 at 08:43 AM Report Share #626299 Posted June 27, 2022 at 08:43 AM Se queres saber qual é o erro, não podes ter apenas catch, tens de apanhar a exceção, nem que seja a exceção mais genérica, e ver qual é o erro que tens. 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
CIA Posted July 8, 2022 at 01:10 PM Report Share #626400 Posted July 8, 2022 at 01:10 PM (edited) Olá MikleCod, pode haver muitas possibilidades de erro no teu código, como problema na conexão, ou a tabela não existe, ou uma das colunas não existe, ou estás a tentar colocar uma string numa coluna de inteiros e por ai vai... por isso recomendo fazeres a seguinte alteração no teu código: catch (Exception ex) { MessageBox.Show($"Erro ao registrar: {ex.Message}\n{ex.StackTrace}"); } E ai vais conseguir saber exatamente qual o erro que está no teu código e se não conseguires resolver já será mais fácil para a malta te ajudar. Ps: Coloquei a mensagem de Erro ao registrar mas isso fica ao teu critério. Cumprimentos 😉 Edited July 8, 2022 at 01:13 PM by CIA “Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday’s code." – Dan Salomon Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now