public int NuevaEmpresa(string dni) { string query = "insert into empresas values ('" + this.cif + "', '" + this.nombre + "', '" + this.ciudad + "', " + this.nEmp + ", '" + this.tipo + "');"; BaseDatos bd = new BaseDatos(); bd.abrirConexion(); int control = bd.executeNonQuery(query); query = "insert into asigna values ('"+this.cif+"', '"+dni+"');"; control = bd.executeNonQuery(query); bd.cerrarConexion(); if (control == 1) { return 1; } else { return 0; } }
public int nuevo() { string query = "insert into hace values ('"+this.dni+"', "+this.codO+", '"+this.cif+"', '"+this.fecha+"');"; BaseDatos bd = new BaseDatos(); bd.abrirConexion(); int control = bd.executeNonQuery(query); bd.cerrarConexion(); if (control == 1) { return 1; } else { return 0; } }
public string buscarComerciales(string vdni, string vpassw) { string query = "select nombre from comerciales where dni='"+vdni+"' and password ='******';"; BaseDatos bd = new BaseDatos(); bd.abrirConexion(); string usu = bd.executeQuery(query); bd.cerrarConexion(); if (usu != "0") { return usu; } else { return "0"; } }