commit 03/09/2025

This commit is contained in:
2025-09-03 16:01:18 +07:00
parent ff4f0fd742
commit c01c4e39fd
5 changed files with 298 additions and 44 deletions

View File

@@ -1247,7 +1247,7 @@ class MariaDB(
* Reads all entries from the queue_table in the database.
* @return A list of QueueTable entries.
*/
fun Read_Queue_Table(): List<QueueTable> {
fun Read_Queue_Table(): ArrayList<QueueTable> {
val queueList = ArrayList<QueueTable>()
try {
val statement = connection?.createStatement()
@@ -1314,7 +1314,7 @@ class MariaDB(
* Reads all entries from the queue_paging in the database.
* @return A list of QueuePaging entries.
*/
fun Read_Queue_Paging(): List<QueuePaging> {
fun Read_Queue_Paging(): ArrayList<QueuePaging> {
val queueList = ArrayList<QueuePaging>()
try {
val statement = connection?.createStatement()