@@ -14,7 +14,7 @@ import RustInsertPartial from "../../partials/_rust.sql.insert.partial.mdx"
14
14
15
15
QuestDB supports the Postgres Wire Protocol (PGWire) for data-in.
16
16
17
- For querying and data-out, QuestDB is compatible with PostgreSQL queries .
17
+ For querying and data-out, QuestDB is compatible with PostgreSQL protocol .
18
18
19
19
This means that you can use your favorite PostgreSQL client or driver with
20
20
QuestDB.
@@ -26,7 +26,7 @@ For information querying and data-out, see the
26
26
27
27
The PostgreSQL storage model is fundamentally different than that of QuestDB.
28
28
29
- As a result, some features that exists for Postgres do not exist in QuestDB.
29
+ As a result, some features that exists for PostgreSQL do not exist in QuestDB.
30
30
31
31
:::
32
32
@@ -80,12 +80,11 @@ For full query details and examples, see the PostgreSQL section in the
80
80
### List of supported features
81
81
82
82
- Querying (all types expect ` BLOB ` )
83
- - Prepared statements with bind parameters (check for specific libraries
84
- [ below] ( /docs/reference/api/postgres/#libraries--programmatic-clients ) )
83
+ - Prepared statements with bind parameters
85
84
- ` INSERT ` statements with bind parameters
86
85
- ` UPDATE ` statements with bind parameters
87
86
- DDL execution
88
- - Batch inserts with ` JDBC `
87
+ - Batch inserts
89
88
- Plain authentication
90
89
91
90
### List of supported connection properties
@@ -106,34 +105,4 @@ For full query details and examples, see the PostgreSQL section in the
106
105
107
106
## Recommended third party tools
108
107
109
- The following list of third party tools includes drivers, clients or utility
110
- CLIs that our team has tested extensively. Picking an item from it will
111
- guarantee that your code will work with QuestDB.
112
-
113
- We recognize that our community might value some features more than others. This
114
- is why we encourage you to [ open an issue on GitHub] ( https://github.com/questdb/questdb/issues ) if
115
- you think we are missing something important for your workflow.
116
-
117
- ### CLIs
118
-
119
- #### [ PSQL] ( https://www.postgresql.org/docs/current/app-psql.html ) ` 12 `
120
-
121
- Support for ` SELECT ` , ` INSERT ` , ` UPDATE ` , ` CREATE ` , ` DROP ` , ` TRUNCATE ` .
122
-
123
- ### Libraries / Programmatic clients
124
-
125
- #### [ node-postgres] ( https://node-postgres.com/ ) (NodeJS) ` 8.4 `
126
-
127
- #### [ pq] ( https://github.com/lib/pq ) (Go) ` 1.8 `
128
-
129
- #### [ pq] ( https://www.postgresql.org/docs/12/libpq.html ) (C) ` 12 `
130
-
131
- #### [ Psycopg] ( https://www.psycopg.org ) (Python) ` 2.9.3 ` and ` 3.1 `
132
-
133
- #### [ ruby-pg] ( https://github.com/ged/ruby-pg ) (Ruby) ` 1.4.3 `
134
-
135
- #### [ pg_connect] ( https://www.php.net/manual/en/function.pg-connect.php ) (PHP) ` 8.1.0 `
136
-
137
- ### Drivers
138
-
139
- #### [ JDBC] ( https://jdbc.postgresql.org/ ) ` 42.2 `
108
+ See [ PGWire client guides] ( /docs/pgwire/pgwire-intro/ ) for more information about supported PostgreSQL clients and libraries.
0 commit comments