Files
sqlpage--sqlpage/tests/requests/request_download_test.sql
lovasoa b0dadea0ae feat: add download component
- Introduce a new download component to facilitate file downloads.
- Implement download handling in the header context, supporting data URLs.
- Add a test for the download functionality to ensure correct behavior.

see https://github.com/sqlpage/SQLPage/discussions/996
2025-08-28 22:43:53 +02:00

7 lines
140 B
SQL

select 'download' as component,
'data:text/plain;base64,SGVsbG8gZG93bmxvYWQh' as data_url,
'my text file.txt' as filename;