Bueno pasa lo siguiente estoy haciendo un ejercicio CRUD con C# y Mysql bueno estaba haciendo la parte de insertar y todo bien
peo vi que al no poner nada en el textbox y dale guardar igual guarda hay alguna manera de pedir que se rellene ese campo obligatorio
o si no que no guarde nada y gracias aca el codigo
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Ejercicio
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Funciones fn = new Funciones();
private void Form1_Load(object sender, EventArgs e)
{
bool conectado = fn.Conectar();
if (conectado)
{
MessageBox.Show("conectado");
}
else
{
MessageBox.Show("Error al conectar");
}
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void txbAgregar_Click(object sender, EventArgs e)
{
string agregar = "insert into raza (raza) values('"+txtRaza.Text + "')";
if (fn.insertar(agregar))
{
MessageBox.Show("Registro Guardado");
}
else {
MessageBox.Show("Error al Guardar");
}
}
private void txbEliminar_Click(object sender, EventArgs e)
{
string eliminar = "delete from raza where id_raza=" + txtIdraza.Text;
if (fn.Eliminar(eliminar))
{
MessageBox.Show("Eliminado");
}
else
{
MessageBox.Show("Ocurrio un Error");
}
}
}
}