Last modified by Ricardo Julio Rodríguez Fernández on 2025/07/13 08:08

From version 12.1
edited by Ricardo Julio Rodríguez Fernández
on 2024/01/17 07:11
Change comment: There is no comment for this version
To version 14.1
edited by Ricardo Julio Rodríguez Fernández
on 2024/01/17 07:19
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -9,7 +9,10 @@
9 9   sql.eachRow("SELECT PersonnelID,Surname,Name,Category FROM IGFAE_Personnel ORDER BY Surname"){
10 10   println "|${it.PersonnelID}|${it.Surname}|${it.Name}|${it.Category}"
11 11   }
12 - sql.rows("SELECT COUNT(*) FROM IGFAE_Personnel")
12 + println "|=Number of members"
13 + sql.rows("SELECT COUNT(*) FROM IGFAE_Personnel"){
14 + println "|${it}"
15 + }
13 13   sql.close()
14 14  
15 15  {{/groovy}}