Buchungs modal um actions erweitert

This commit is contained in:
2026-03-09 17:23:49 +01:00
parent 5cb4eb96e8
commit 1f903ea80e
8 changed files with 121 additions and 21 deletions
+17
View File
@@ -0,0 +1,17 @@
##
## Datum : 2026-03-09_15-47
## Name : Christian Oswald
## Datei : f_max_id.R
## Projekt : gemfin-shiny
## Kommentar: Ermittelt den maximalen id einer tabelle
##
## * Initialisierung ----
max_id <- function(conn, tablle){
paste0("SELECT max(id) FROM ", tabelle) %>%
dbxSelect(conn,.) %>%
pull
}