commit 03/09/2025
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user