Changes for page Predoctoral staff: historical record
Last modified by Ricardo Julio Rodríguez Fernández on 2025/07/13 08:08
From version 5.1
edited by Ricardo Julio Rodríguez Fernández
on 2024/01/13 12:18
on 2024/01/13 12:18
Change comment:
Deleted annotation 0
To version 13.1
edited by Ricardo Julio Rodríguez Fernández
on 2024/01/17 07:17
on 2024/01/17 07:17
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,12 +1,17 @@ 1 +{{sortable_tables filterable="yes" sticky="yes"/}} 2 + 1 1 {{groovy}} 2 2 import groovy.sql.Sql 3 3 4 4 def sql = new Sql(services.component.getConnection()) 5 5 6 - println "|= Surname|= Name|= Category" 7 - sql.eachRow("SELECT Surname,Name,Category FROM IGFAE_Personnel ORDER BY Surname"){ 8 - println "|${it.Surname}|${it.Name}|${it.Category}" 8 + println "|=Pid|= Surname|= Name|= Category" 9 + sql.eachRow("SELECT PersonnelID,Surname,Name,Category FROM IGFAE_Personnel ORDER BY Surname"){ 10 + println "|${it.PersonnelID}|${it.Surname}|${it.Name}|${it.Category}" 9 9 } 12 + sql.rows("SELECT COUNT(*) FROM IGFAE_Personnel"){ 13 + println "|${it}" 14 + } 10 10 sql.close() 11 11 12 12 {{/groovy}}