Chris

Results 84 comments of Chris

wow - looks like its taken a while, but MS looks like they finally have something for snap users. looks like after a lot of trial and error with regard...

Which output window are you seeing that under? There are two a `PostgreSQL` and `PostgreSQL Service`.

That particular error is coming from the "Select Connection" command, and is activated by choosing the command from the command palette or by clicking on the server selector in the...

This is being investigated for the next major version of the extension - though there might be some releases between now and then to prepare the way for other features.

I have found that there are two ways of connecting to servers securely - and both are considered SSL. 1. Connecting to a postgres server over ssl - works similar...

Yeah, it probably would be fixed by that - the challenge is in finding/building a language parser, and then building the language for it. It is rather slow going on...

Currently the error validation is powered by postgres itself by prepending each statement with an `EXPLAIN` and running that. Postgres itself is returning these errors. `EXPLAIN` was not meant for...

sort of - that only really works if the query originally used the default connection - if the user changed the server/database before closing - it would reset to the...

Perhaps I need more clarification... Support how exactly - showing "SERIAL" in the database explorer or column headers, syntax highlighting, or problem checking? SERIAL is essentially an INT column with...

Yea... Running the query should still work. That errors is from `EXPLAIN` as that is what power the error checking for the underlines. ``` postgres=# \c test_db You are now...