pgweb icon indicating copy to clipboard operation
pgweb copied to clipboard

Cross-platform client for PostgreSQL databases

Results 101 pgweb issues
Sort by recently updated
recently updated
newest added

The `psql` CLI supports reading from the `~/.pgpass` configuration file with a standard format, so that you don't need to put passwords into the command-line history or enter them in...

enhancement

# What does this PR do? Empty schemes are shown in the ui as well. # Motivation We are providing postgres databases to other developers inside the Daimler Group and...

For our use case, we often have to run large queries and export the results to CSV. We would love to do that through pgweb, but currently when running a...

In order to use self signed certificates it would be great to set this with a command line argument, for example --ssl-skipverify

``` json: error calling MarshalJSON for type time.Time: Time.MarshalJSON: year outside of range [0,9999] /Users/sosedoff/go/src/github.com/sosedoff/pgweb/vendor/github.com/gin-gonic/gin/render/json.go:46 (0x15268d3) JSON.Render: panic(err) /Users/sosedoff/go/src/github.com/sosedoff/pgweb/vendor/github.com/gin-gonic/gin/context.go:713 (0x152c53e) (*Context).Render: if err := r.Render(c.Writer); err != nil { /Users/sosedoff/go/src/github.com/sosedoff/pgweb/vendor/github.com/gin-gonic/gin/context.go:756...

When running pgweb with postgres via `docker-compose`, pgweb can in some cases start before the database port is available which causes the container to exit with `connection refused`. There are...

Example query: ``` SELECT n.nspname AS "schema", t.typname, string_agg(e.enumlabel, '|' ORDER BY e.enumsortorder) AS enum_labels FROM pg_catalog.pg_type t JOIN pg_catalog.pg_namespace n ON n.oid = t.typnamespace JOIN pg_catalog.pg_enum e ON t.oid...

Current the query timeout is hard-coded: https://github.com/sosedoff/pgweb/blob/master/static/js/app.js#L57 The feature request is for adding the following command line option: ``` --query-timeout= Set database query timeout in seconds (300) ```

When pgweb is terminated any new request (or a custom query) will never seem to finish, however the backend is gone and we should print out an error message.

When I try to export data, the client seems to form an invalid API call to the backend. For example, clicking the CSV export button calls the backend with the...