Remove SDL2

This commit is contained in:
2025-07-22 14:22:37 -05:00
parent a55705ead4
commit c356866721
5 changed files with 17 additions and 1417 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -47,6 +47,7 @@ namespace Tesses::CrossLang {
{
if(this->db == nullptr) return nullptr;
std::vector<std::vector<std::pair<std::string, std::optional<std::string>>>> res;
this->db->Exec(arg,res);
TList* list = TList::Create(ls);
@@ -101,7 +102,12 @@ namespace Tesses::CrossLang {
std::string cmd;
if(GetArgumentHeap(args,0,sql) && GetArgument(args,1,cmd))
{
try {
return sql->CallMethod(ls,"Exec",{cmd});
} catch(std::runtime_error& ex)
{
return (std::string)ex.what();
}
}
return Undefined();