Skip to content

Commit

Permalink
Update query table presentation (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Deflaimun authored Oct 30, 2024
1 parent f4daf86 commit e8ad92c
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions modules/components/pages/processors/sql_raw.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -200,17 +200,18 @@ dsn: oracle://foouser:foopass@localhost:1521/service_name

The query to execute. The style of placeholder to use depends on the driver, some drivers require question marks (`?`) whereas others expect incrementing dollar signs (`$1`, `$2`, and so on) or colons (`:1`, `:2` and so on). The style to use is outlined in this table:

| Driver | Placeholder Style |
|---|---|
| `clickhouse` | Dollar sign |
| `mysql` | Question mark |
| `postgres` | Dollar sign |
| `mssql` | Question mark |
| `sqlite` | Question mark |
| `oracle` | Colon |
| `snowflake` | Question mark |
| `trino` | Question mark |
| `gocosmos` | Colon |
|===
| Driver | Placeholder Style
| `clickhouse` | Dollar sign ($)
| `mysql` | Question mark (?)
| `postgres` | Dollar sign ($)
| `mssql` | Question mark (?)
| `sqlite` | Question mark (?)
| `oracle` | Colon (;)
| `snowflake` | Question mark (?)
| `trino` | Question mark (?)
| `gocosmos` | Colon (;)
|===


*Type*: `string`
Expand Down

0 comments on commit e8ad92c

Please sign in to comment.