Add custom server API and runtime limits

This commit is contained in:
udo
2026-05-21 09:36:23 +00:00
parent 02e153a6a7
commit d37517041d
18 changed files with 641 additions and 66 deletions
+3
View File
@@ -43,7 +43,10 @@ MySQL* mysql_connect(String host = "localhost", String username = "root", String
void mysql_disconnect(MySQL* m)
{
if(!m)
return;
m->disconnect();
delete m;
}
String mysql_error(MySQL* m)