d718c5a372
CI / windows_test (push) Waiting to run
CI / compile_and_lint (push) Failing after 0s
CI / docker_build (linux/amd64, -linux-amd64-duckdb, duckdb) (push) Failing after 0s
CI / docker_build (linux/arm64, -linux-arm64, minimal) (push) Failing after 2s
CI / docker_build (linux/arm64, -linux-arm64-duckdb, duckdb) (push) Failing after 1s
CI / docker_build (linux/amd64, minimal) (push) Failing after 1s
CI / test (, sqlite, sqlite::memory:) (push) Has been skipped
CI / test (mssql, mssql, mssql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (mysql, mysql, mysql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (oracle, oracle, Driver=Oracle 21 ODBC driver;Dbq=//127.0.0.1:1521/FREEPDB1;Uid=root;Pwd=Password123!) (push) Has been skipped
CI / test (postgres, odbc, Driver=PostgreSQL Unicode;Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!, true) (push) Has been skipped
CI / test (postgres, postgres, postgres://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / playwright (push) Has been skipped
CI / docker_build (linux/arm/v7, -linux-arm-v7, minimal) (push) Failing after 0s
CI / hurl_examples (push) Failing after 8s
deploy website / deploy_official_site (push) Failing after 1s
CI / docker_push (duckdb) (push) Waiting to run
CI / docker_push (minimal) (push) Waiting to run
CI / hurl (${{ matrix.example }}) (push) Has been skipped
47 lines
1.9 KiB
Plaintext
47 lines
1.9 KiB
Plaintext
digraph {
|
|
rankdir=LR;
|
|
node [shape=rectangle, style=rounded, fontname=helvetica];
|
|
edge [arrowhead=normal, arrowtail=crow, dir=both];
|
|
|
|
subgraph cluster_browser {
|
|
label = "Web Browser";
|
|
style = filled;
|
|
color = lightgrey;
|
|
node [style=filled, color=white];
|
|
browser [label = "<f0>Web Browser|<f1>"];
|
|
}
|
|
|
|
subgraph cluster_sqlpage {
|
|
label = "SQLPage";
|
|
style = filled;
|
|
color = lightblue;
|
|
node [style=filled, color=white];
|
|
read_file [label = "<f0>Read File|<f1>todos.sql"];
|
|
replace_param [label = "<f0>Replace Parameter|<f1>$todo_id with 1"];
|
|
format_results [label = "<f0>Format Results|<f1>as HTML"];
|
|
}
|
|
|
|
subgraph cluster_database {
|
|
label = "Database";
|
|
style = filled;
|
|
color = palegreen;
|
|
node [style=filled, color=white];
|
|
execute_query [label = "<f0>Execute|<f1>Query"];
|
|
return_results [label = "<f0>Return|<f1>Results"];
|
|
}
|
|
|
|
browser:f1 -> http_request [label = " HTTP GET Request\n/todos.sql?todo_id=1", lhead=cluster_browser];
|
|
http_request -> read_file:f0 [lhead=cluster_sqlpage];
|
|
read_file:f1 -> replace_param:f0;
|
|
replace_param:f1 -> sql_query [label = " SQL Query\nSELECT * FROM todos\nWHERE id = 1", lhead=cluster_sqlpage];
|
|
sql_query -> execute_query:f0 [lhead=cluster_database];
|
|
execute_query:f1 -> return_results:f0;
|
|
return_results:f1 -> result_stream [label = " Result Stream", lhead=cluster_database];
|
|
result_stream -> format_results:f0 [lhead=cluster_sqlpage];
|
|
format_results:f1 -> html_response [label = " HTML Response\nwith Formatted Results", ltail=cluster_sqlpage];
|
|
html_response -> browser:f0 [label = " Display Results", lhead=cluster_browser];
|
|
|
|
// Additional Styles
|
|
edge [arrowhead=normal, arrowtail=none, dir=both, fontname=helvetica, fontsize=10];
|
|
node [fontsize=12];
|
|
} |