public void Cadastrar() { dbConc conexao = new dbConc(); MySqlCommand comando; bool cad = false; try { string strSql = "INSERT INTO CLIENTE (nome_cliente, endereco_cliente, telefone_cliente, email_cliente) " + "VALUES ('" + nome + "','" + endereco + "','" + telefone + "' , '" + email + "')"; comando = new MySqlCommand(strSql, conexao.AbrirBanco()); comando.ExecuteNonQuery(); cad = true; } catch (Exception ex) { MessageBox.Show(ex.Message); cad = false; } finally { conexao.FecharBanco(conexao.AbrirBanco()); conexao = null; comando = null; } if (cad == true) { MessageBox.Show("Cadastrado com sucesso!", MessageBoxButtons.OK.ToString()); } }
public void Cadastrar() { dbConc conexao = new dbConc(); MySqlCommand comando; bool cad = false; try { string strSql = "INSERT INTO FORNECEDOR (razao_social, cnpj, nome, endereco, telefone) " + "VALUES ('" + razao_social + "','" + cnpj + "','" + nome + "' , '" + telefone + "','" + endereco + "')"; comando = new MySqlCommand(strSql, conexao.AbrirBanco()); comando.ExecuteNonQuery(); cad = true; } catch (Exception ex) { MessageBox.Show(ex.Message); cad = false; } finally { conexao.FecharBanco(conexao.AbrirBanco()); conexao = null; comando = null; } if (cad == true) { MessageBox.Show("Cadastrado com sucesso!", MessageBoxButtons.OK.ToString()); } else { MessageBox.Show("Tente Novamente!", MessageBoxButtons.OK.ToString()); } }
public void Cadastrar() { try { string strSql = "INSERT INTO PRODUTO (descricao, preco, quantidade, fornecedor) " + "VALUES ('" + descricao + "','" + preco + "','" + quantidade + "' , '" + fabricante + "')"; comando = new MySqlCommand(strSql, conexao.AbrirBanco()); comando.ExecuteNonQuery(); cad = true; } catch (Exception ex) { MessageBox.Show(ex.Message); cad = false; } finally { conexao.FecharBanco(conexao.AbrirBanco()); // conexao = null; // comando = null; } if (cad == true) { MessageBox.Show("Cadastrado com sucesso!", MessageBoxButtons.OK.ToString()); } else { MessageBox.Show("Tente Novamente!", MessageBoxButtons.OK.ToString()); } }
public bool VerificaoFuncioanrio(string login, string password) { dbConc conex = new dbConc(); try { comando.Connection = conex.AbrirBanco(); comando.CommandText = "select *from Funcionario where loginFuncionario= '" + login + "' and senhaFuncionario= '" + password + "' "; comando.CommandType = CommandType.Text; MySqlDataReader leitura = comando.ExecuteReader(); if (leitura.HasRows) { while (leitura.Read()) { string resultado = (string)leitura["cargoFuncionario"].ToString(); string resultado1 = (string)leitura["nomeFuncionario"].ToString(); frmMenu menu = new frmMenu(); menu.RecebendoValorLogin(resultado1, resultado); menu.Show(); } return(true); } else { return(false); } } catch (Exception ex) { MessageBox.Show(ex.Message); return(false); } finally { conex.FecharBanco(conex.AbrirBanco()); conex = null; } }
public bool Verificao() { dbConc conex = new dbConc(); try { conex.AbrirBanco(); string strSql = "select * from login where usuario='" + Usuario + "' && senha='" + Senha + "' "; MySqlDataAdapter data = new MySqlDataAdapter(strSql, conex.AbrirBanco()); DataTable dt = new DataTable(); data.Fill(dt); if (dt.Rows.Count == 1) { frmMenu menu = new PizzariaWinForm.frmMenu(); menu.Show(); return(true); } else { MessageBox.Show("Login nao encontrado", MessageBoxButtons.OK.ToString()); return(false); } } catch (Exception ex) { MessageBox.Show(ex.Message); return(false); } finally { conex.FecharBanco(conex.AbrirBanco()); conex = null; } }
public DataTable PesquisaData() { try { string strMysql = " select vc.idVenda as 'Id Venda ',c.idCliente as 'id Cliente', c.nomeCliente as 'Nome' , vc.totalVenda as 'Total Venda', vc.reclamacoesElogiosVenda as 'Reclamações/Elogios' , vc.dataVenda as 'Data Venda' from Produto p join ProdutoVenda pv on p.idProduto = pv.idProduto join Venda vc on pv.idVenda = vc.idVenda join Cliente c on vc.clienteVenda = c.idCliente where DATE_FORMAT(dataVenda, '%Y-%m-%d') BETWEEN '" + dataVendaI.ToString("yyyy-MM-dd") + "'AND '" + dataVendaF.ToString("yyyy-MM-dd") + "'"; comando = new MySqlCommand(strMysql, conexao.AbrirBanco());; MySqlDataAdapter da = new MySqlDataAdapter(comando); DataTable dtLista = new DataTable(); da.Fill(dtLista); return(dtLista); } catch (Exception) { throw; } }
public void Cadastrar() { try { string strSql = "INSERT INTO Produto (descricaoProduto, precoProduto, porcentagemProduto, precoVendaProduto, categoriaProduto, quantidadeProduto, fornecedor) " + "VALUES ('" + descricao + "','" + preco.ToString("F2", CultureInfo.InvariantCulture) + "','" + porcentagem + "' , '" + precoVenda.ToString("F2", CultureInfo.InvariantCulture) + "', '" + categoria + "', '" + quantidade + "', '" + fabricante + "')"; comando = new MySqlCommand(strSql, conexao.AbrirBanco()); comando.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { conexao.FecharBanco(conexao.AbrirBanco()); // conexao = null; // comando = null; } }
public void Cadastrar() { string strSql = "INSERT INTO Fornecedor (razaoSocial, cnpj, nomeFantasia ,enderecoFornecedor, numeroFornecedor, telefoneFornecedor, observacoesFornecedor) " + "VALUES ('" + razao_social + "','" + cnpj + "','" + nome + "' ,'" + endereco + "' , '" + numero + "', '" + telefone + "', '" + obs + "')"; try { comando = new MySqlCommand(strSql, conexao.AbrirBanco()); comando.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { conexao.FecharBanco(conexao.AbrirBanco()); // conexao = null; // comando = null; } }
public void Cadastrar() { string strSql = "INSERT INTO Cliente (nomeCliente, enderecoCliente, numeroCliente ,telefoneCliente, cpfCliente) " + "VALUES ('" + Nome + "','" + Endereco + "','" + Numero + "' ,'" + Telefone + "' , '" + CPF + "')"; try { comando = new MySqlCommand(strSql, conexao.AbrirBanco()); comando.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { conexao.FecharBanco(conexao.AbrirBanco()); // conexao = null; // comando = null; } }
public void PreencherText(string cargo, string usuario, string nome) { //string strPtext = "select *from Funcionario where loginFuncionario='" + "aoki" + "'"; string strPtext = "select *from Funcionario where loginFuncionario='" + usuario + "'"; try { comando = new MySqlCommand(strPtext, conexao.AbrirBanco()); comando.ExecuteNonQuery(); MySqlDataReader dr; dr = comando.ExecuteReader(); while (dr.Read()) { string resultado = (string)dr["cargoFuncionario"].ToString(); cargo = resultado; } } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { conexao.FecharBanco(conexao.AbrirBanco()); // conexao = null; // comando = null; } }
public void CadastrarVenda() { string strSql = "INSERT INTO Venda(idVenda ,clienteVenda, dataVenda, totalVenda,reclamacoesElogiosVenda) " + "VALUES ('" + idVenda + "','" + idCliente + "','" + dataVenda.ToString("yyyy-MM-dd HH:mm:ss") + "','" + totalVendas + "','" + reclamacoesElogios + "')"; try { comando = new MySqlCommand(strSql, conexao.AbrirBanco()); comando.ExecuteNonQuery(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { conexao.FecharBanco(conexao.AbrirBanco()); // conexao = null; // comando = null; } }