TheCadastrar
eventisshowingupwiththeerror.
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingCamadaModelo;usingSystem.Configuration;usingSystem.Data;usingSystem.Data.OleDb;usingCamadaControle;namespaceCamadaControle{publicclassctlTarefas{publicboolCadastrar(mdlTarefas_mdlTarefas){try{stringconexaoMSAccess=ConfigurationManager.ConnectionStrings["conexaoMSAccess"].ToString();
OleDbConnection conexaodb = new OleDbConnection(conexaoMSAccess);
conexaodb.Open();
string query = "INSERT INTO tbl_tarefas (nome, descrição, data) VALUES (@Nome, @Descrição, @Data)";
OleDbCommand cmd = new OleDbCommand(query, conexaodb);
var pmtNome = cmd.CreateParameter();
pmtNome.ParameterName = "@Nome";
pmtNome.DbType = DbType.String;
pmtNome.Value = _mdlTarefas.nome;
cmd.Parameters.Add(pmtNome);
var pmtDescricao = cmd.CreateParameter();
pmtDescricao.ParameterName = "@Descrição";
pmtDescricao.DbType = DbType.String;
pmtDescricao.Value = _mdlTarefas.nome;
cmd.Parameters.Add(pmtDescricao);
var pmtData = cmd.CreateParameter();
pmtData.ParameterName = "@Data";
pmtData.DbType = DbType.String;
pmtData.Value = _mdlTarefas.nome;
cmd.Parameters.Add(pmtData);
if(cmd.ExecuteNonQuery() > 0)
{
conexaodb.Close();
return true;
}
else
{
conexaodb.Close();
return false;
}
}
catch(Exception ex)
{
Console.WriteLine("Erro ao inserir informações!" + ex.Message);
}
finally
{
Console.WriteLine("Precione inicio");
Console.ReadKey();
}
}
}
}