jkadw

Results 9 comments of jkadw

Hi Jonas, ich habe mal im Browser etwas genauer reingeschaut. Auch bei meinem Sohn gibt es keinen Extra-Reiter "Prüfungen". Allerdings bekommt man eine Zusatzinfo beim Abfragen des Kalenders: https://nessa.webuntis.com/WebUntis/api/rest/view/v1/timetable/entries?start=2025-09-22&end=2025-09-26&format=1&resourceType=STUDENT&resources=6524&periodTypes=&timetableType=MY_TIMETABLE {...

Hi @sevorl, ich habe es raus - mit dem Elternaccount ist der Exam-Kalender nicht verfügbar. Beim Anmelden mit dem Schüleraccount sehe ich alle Prüfungen. Eventuell könnte man die Doku anpassen...

Example: ``` METHOD session_context BY DATABASE FUNCTION FOR HDB LANGUAGE SQLSCRIPT OPTIONS READ-ONLY. RETURN SELECT port, connection_id, key AS key_, value, section, host FROM sys.m_session_context; endmethod. ```

I've tested with standalone 2.113.68. The linter does not exclude the native SQL. You can see it from this slightly enhanced code snippet - it's still throwing an error because...

You might notice that it does not recognize the end of "Native SQL" correctly: ![image](https://github.com/user-attachments/assets/e3d14efc-b115-4081-a750-642df906222d) => Both the "ENDMETHOD." and the "ENDCLASS." are marked as "Native SQL"...

That last post came from another example where I put double quotes around the schema name, and as they are recognized as the beginning of a comment, the rest doesn't...

The reason is that the linter recognizes ";" as the end of the "Native SQL" section, but this is now hidden behind the comment. If you put the ";" on...

That's better. But the main problem is that it's still parsing the NativeSQL part as though it were ABAP. It tries to evaluate the code, and it will stumble: 1....

Looks good, I'll run it on a larger set of code when there's the next update for the vscode extension. Thanks a lot!