066c80ace2
fixes https://github.com/lovasoa/SQLpage/issues/7 see - https://github.com/lovasoa/SQLpage/discussions/197 - https://github.com/lovasoa/SQLpage/discussions/215 - https://github.com/lovasoa/SQLpage/discussions/254
6 lines
221 B
SQL
6 lines
221 B
SQL
set res = sqlpage.fetch('http://localhost:62802/hello_world')
|
|
select 'text' as component,
|
|
case
|
|
when $res LIKE 'GET /hello_world%' then 'It works !'
|
|
else 'It failed ! Got: ' || $res
|
|
end as contents; |