Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
horario
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Juan Guevara Mayta
horario
Commits
12fd64ba
Commit
12fd64ba
authored
Jan 14, 2020
by
Tony Inuma Dahua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FIX: Asignacion de Horarios - Filtro por docente, solo debe listar docentes activos
parent
7b351936
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
MySqlAreaDocenteDAO.java
src/java/pe/siso/horario/MySqlDAO/MySqlAreaDocenteDAO.java
+1
-1
No files found.
src/java/pe/siso/horario/MySqlDAO/MySqlAreaDocenteDAO.java
View file @
12fd64ba
...
@@ -298,7 +298,7 @@ public class MySqlAreaDocenteDAO implements AreaDocenteDAO {
...
@@ -298,7 +298,7 @@ public class MySqlAreaDocenteDAO implements AreaDocenteDAO {
try
{
try
{
cnx2
=
MySqlDAOFactory
.
obtenerConexion
(
base2
);
cnx2
=
MySqlDAOFactory
.
obtenerConexion
(
base2
);
Statement
st2
=
cnx2
.
createStatement
();
Statement
st2
=
cnx2
.
createStatement
();
String
query2
=
" SELECT codprofesor, nombre, apellido from profesor WHERE codprofesor in ("
+
cadenaCodigosDocente
+
") "
String
query2
=
" SELECT codprofesor, nombre, apellido from profesor WHERE codprofesor in ("
+
cadenaCodigosDocente
+
")
and estadoprofe='Y'
"
+
" ORDER BY apellido ;"
;
+
" ORDER BY apellido ;"
;
ResultSet
rs2
=
st2
.
executeQuery
(
query2
);
ResultSet
rs2
=
st2
.
executeQuery
(
query2
);
System
.
out
.
println
(
query2
);
System
.
out
.
println
(
query2
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment