Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Projects in PostgreSQL #118

Closed
wonder-sk opened this issue Mar 19, 2018 · 64 comments
Closed

Projects in PostgreSQL #118

wonder-sk opened this issue Mar 19, 2018 · 64 comments

Comments

@wonder-sk
Copy link
Member

wonder-sk commented Mar 19, 2018

QGIS Enhancement: Projects in PostgreSQL

Date 2018/03/19

Author Martin Dobias (@wonder-sk)

Contact martin dot dobias at lutraconsulting dot co dot uk

maintainer @wonder-sk

Version QGIS 3.2

Summary

The idea is to introduce the possibility to save/load projects inside PostgreSQL databases in addition to saving/loading projects as .qgs files. This would be done by introducing a QGIS-specific table to the database (in a similar fashion like in-database storage of layer styles works already).

There is already QGPKG python plugin that does a similar thing - load/save QGIS projects in GeoPackage files. This QEP only focuses on PostgreSQL, however it paves the road for native support for other project backends like GeoPackage.

Proposed Solution

The “Project” menu should get two more menu items: “Load from…” and “Save to…” - both of them will then list of available project storage backends (e.g. PostgreSQL, GeoPackage). Clicking these items would open backend-specific GUI to load/save project. In case of PostgreSQL it will allow user to pick connection, schema and project name.

In addition to that, there should be support in Browser panel: project files stored in database should show up in the tree and dragging a project into QGIS would load it. In the future there may be support for drag&drop of project files between different project storage backends - but that is not going to be available in the initial implementation.

When working with a project that is already stored in database, there should be no difference in the workflow - clicking “Save” action would overwrite the existing version in the backend storage.

Database Storage

We will introduce a new table qgis_projects which would be only created the first time user wants to save a QGIS project in a particular schema. The table will have the following columns:

  • Name [pkey]
  • Last modified - time
  • Last modified - user name
  • Content (XML / possibly a ZIP)

Design

We will add QgsProjectStorage class - an interface that abstracts listing of project files, reading, writing and their removal. Individual storage backends would implement this interface to provide the project read/write support.

Another new class, QgsProjectStorageRegistry, will keep a registry of project storages. It will be a singleton accessible from QgsApplication just like other singletons.

QgsProject class will support backend-specific file names. If file name starts with “abc:” where “abc” is one of the known storage backends, the initial phase of project reading and the final phase of project writing is delegated to the storage backends. If there is no such match, project will be stored as a .qgs file in a path as usual.

Proposed project filename syntax for PostgreSQL:
postgres://[user[:pass]@]host[:port]/?dbname=X&schema=Y&project=Z

Q & A

Q: How about paths to layers or other files if they are not from the database?

All references to files will be saved as absolute paths - if a project is used by multiple users, these paths should be on a shared drive so that the projects can be successfully loaded by everyone.

Q: Will plugins be able to hook into this functionality?

Yes - anyone could implement a custom QgsProjectStorage and register it in QgsProjectStorageRegistry singleton.

Affected Files

QgsProject

Performance Implications

None

Backwards Compatibility

N/A

Votes

(required)

@NathanW2
Copy link
Member

+1 I would like to see a web service style endpoint added in the future as well.

@timlinux
Copy link
Member

Huge +1 from me too. Also storing projects in SQLite would be nice.

@elpaso
Copy link

elpaso commented Mar 19, 2018

+1 I actually was thinking at this improvement recently. I'd like to see it for GPKG too (I mean in core, not as a plugin), so I'm happy to see an API to abstract project persistence.

@andreasneumann
Copy link
Member

Interesting - thanks!

However - don't forget that there are also SERVICE names instead of the hostname/port/db combo regarding the connections to Postgis.

Some organizations rely heavily on these SERVICE definitions and need them to be supported where ever there are connections to PostgreSQL DBs.

@mach0
Copy link
Member

mach0 commented Mar 19, 2018

+1 .. Would be nice to see that wherever it is possible (postgis, sqlite, gepackage)

@ghtmtt
Copy link

ghtmtt commented Mar 19, 2018

+1 thanks @wonder-sk

@tomchadwin
Copy link

  • Content (XML / possibly a ZIP)

Does it seem a little odd putting a serialized dump of all settings into a single field? Is it too complex to consider one field per project key? I know that would be vastly more complex to implement.

@m-kuhn
Copy link
Member

m-kuhn commented Mar 19, 2018

Interesting.

I suppose the list of metadata (last modified timestamp / username) is not exhaustive and we'll want to expand it in the future. In this case will the schema be altered by future QGIS versions? Did you consider to use a jsonb column for metadata?

@wonder-sk
Copy link
Member Author

@andreasneumann good point. Looking into postgres docs they already have the URI string defined supporting SERVICE and even more features like connection through unix sockets or multiple hosts. Seems like it is best to adopt what they support, so if I read it correctly, for SERVICE one would use URI like this: postgresql:///?service=myservice&dbname=mydb

@tomchadwin We really want to dump everything into a single field - the project structure is complex and it changes over time, so we really just want to use it as a simple binary storage. (that's how we store layer styles as well) Also it makes it easier to handle other backends like this as well.

@m-kuhn Haven't thought about the metadata much really and I am not even completely convinced we need those for the table, but it seemed like a good idea as one can get similar metadata from filesystem. Using jsonb could be a good option to keep it extensible for the future...

@pcav
Copy link
Member

pcav commented Mar 19, 2018 via email

@andreasneumann
Copy link
Member

@wonder-sk - regarding SERVICE defintions: The SERVICE definition may also contain the dbname, or even the user name. Typical usage is to have service configurations with a combination of "host/port/dbname" and separate user and pw. Password may be specified in a .pgpass file.

See also https://www.postgresql.org/docs/current/static/libpq-pgservice.html or https://www.endpoint.com/blog/2016/10/26/postgres-connection-service-file

@wonder-sk
Copy link
Member Author

I have just realized I have forgotten to add a small Q&A section I had prepared - now in the QEP...

@andreasneumann right. For the record, the URI syntax I was referring to is documented here: https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING

@cbertelli
Copy link

cbertelli commented Mar 19, 2018

I think this is a very interesting issue; it deserves great attention and much caution.
There are two options proposed by storing the styles in database:

  • proprietary storage format
  • general metadata handling.

I suggest considering both options but favouring the latter.
As @tomchadway says, this would be much more complex but would be useful to extend the interaction between geographic data and any other program as well, sharing information that does not belong to QGIS only.
It's advisable to extend the structure that is already inside any geodatabase (specifically inside PostreSQL/PostGIS and spatialite) to handle metadata in a semantic way.
I cite spatialite because Sandro Furieri almost silently added layer and style handling (and other operational metadata) in the latest version (see: http://www.gaia-gis.it/gaia-sins/spatialite-sql-4.4.0.html).
I think QGIS projects entail a common structure: geographic features belong to layers (or feature classes) that are set up (overlaid) in maps. Something is mandatory (maps describe real features), something is free, something is suggested, but "a rose is a rose" and it's a rose for QGIS, for MapServer, for a web client...
A flexible set up would store open and explicit informations about feature classes and maps in a relational structure and add some specific QGIS meta-information in one or more tables. The actual QGIS project could be built by a logic view on all these tables. It seems complex; storing an xml with everything inside is much simpler, but hides essential informations inside a proprietary table.

@ghtmtt
Copy link

ghtmtt commented Mar 19, 2018

@cbertelli thanks for your ideas, out of budget here, you are welcome to support further work

@wonder-sk
Copy link
Member Author

@cbertelli The complexity of the QGIS project file (XML) is really high - it goes far beyond just having a list of layers with styles... there is layer tree, extra project properties, extra map canvases, layer form definitions, attribute constraints, 3D view settings, print layouts, server configuration and much more. Writing all this information into some extra tables would be an overkill. At the same time the format would be still pretty much "proprietary" - most of that will always be specific to QGIS and there is no standard for such thing that would cover everything we need. If anyone is interested in parsing data out of QGIS project files, there is C++/Python API for it - I can imagine some plugins reading/writing projects in other (standard?) formats, but that would be always at the expense of loosing some project information (just like when using SLD/SE styles).

@m-kuhn
Copy link
Member

m-kuhn commented Mar 19, 2018

Leaving aside budget considerations, there is also a consideration that such a structure would suggest a stability in the project file which is not existent. We also don't want to promise such a stability because this would no longer allow to continue developing QGIS at the current pace. The QGIS project file is open, but not an open standard.

If we go somewhere in the direction of such meta-information, this will be a subset of configuration options, based on a standard which is to be developed in a process indendent from QGIS (if it doesn't already exist anyway).

@wonder-sk
Copy link
Member Author

This is already off-topic, but for those interested in interoperability with other GIS applications: there is OGC OWS Context (http://www.owscontext.org/) which is meant to store information about a bunch of layers and their styling in a standard format. @doublebyte1 has implemented support for it in QGPKG plugin. It also uses XML/JSON to encode the project - see https://github.com/pka/qgpkg/blob/master/owc_geopackage_extension.md

@haubourg
Copy link
Member

@wonder-sk Nice proposal.
On the technical point of view, please note that the auxiliary storage feature needs to be able to write a sqlite database next to the project file to store informations. Porting that to postgres would mean also creating dedicated tables for auxiliary storage in postgres or adding a blob field to store the file if this is possible. Auxilary storage uses ogr sqlite provider currently. @pblottiere has more details about the current implementation.

Another point to note is that we have the optional QGZ zipped format available. On another thread, we agreed that switching it as the default file format would be good to avoid users to have to be aware of ancillary qgd database and any future additional ressources stored along the project. That would mean it could be stored "inside" the project container. I suppose we want to rely on GDAL VSI virtual file system http://www.gdal.org/gdal_virtual_file_systems.html . @rouault do you think extending the VSI to file hosted in data bases could provide the abstraction required to seamlessly access any files in PG, GPKG, etc DB?

@rouault
Copy link

rouault commented Mar 19, 2018

do you think extending the VSI to file hosted in data bases could provide the abstraction required to seamlessly access any files in PG, GPKG, etc DB?

There's already a similar thing used internally by the Oracle GeoRaster driver. It is /vsiocilob/user,password,server,table_name,rowid

@wonder-sk
Copy link
Member Author

For zipped/non-zipped project format, this should be transparent from the point of view of the storage backend - it is just some binary data that will be passed to/from QgsProject.

In terms of support for auxiliary storage (.qgd), I would say that it should simply always get embedded into the project ZIP file if it is needed.

Not sure how we need GDAL VSI for access to the additional resources - all that should be handled by QgsProject I guess...

@mdouchin
Copy link

Hum... It would be indeed very simple to store the project content into a single column, but IMHO it would be good to have the project into JSONB (or XML, but I would prefer JSONB) to be able to query the content easily. I reckon JSONB is for PostgreSQL.
If we want to keep both format (XML / blob / zip and JSONB), metadata table could have the knowledge of the format of storage.

For Sqlite, we could use http://sqlite.org/json1.html

@luipir
Copy link

luipir commented Mar 19, 2018

  • +1 about the feature
  • about VSI, if we follow the same logic of the dataproviders as in saveStyle, each provider expose a capability (to save something) and implement or not the specific way to save the xml (I would't prefer to use blob because can't be parsed via SQL if necessary).
    If we use the VSI/GDAL way, how should be a clean way to delegate to GDAL something that is expected to be implemented in the specific provider? could it be a capabilityRegistry api added to the DataProvider base class?

@wonder-sk
Copy link
Member Author

@mdouchin we can't really store projects in JSONB as the projects are only stored in XML or in ZIP (containing project XML + other resources). Just like .qgs project files should not be accessed directly with third party XML parsers because the file format may change at any time, the same applies also when project files are written to the database: they should be treated as arbitrary binary data and only accessed through QgsProject API (because that is the only safe way to do it).

Regarding to whether keep also format type in the qgis_projects table, I would prefer to leave it up to QGIS to auto-detect it but I do not have a strong opinion about that.

@wonder-sk
Copy link
Member Author

@luipir The support for project reading/writing is not going to be directly related to data providers: we want to support also arbitrary project file backends independent from providers (e.g. imagine a plugin adding support for storage of projects in Dropbox / Nextcloud). Also, data providers cannot be created in python as far as I know (no support in QgsProviderRegistry).

Not sure I understand why we should go through VSI if we can access data directly with more flexibility (e.g. through QgsPostgresConn for postgres)

@luipir
Copy link

luipir commented Mar 19, 2018

The support for project reading/writing is not going to be directly related to data providers

@wonder-sk sorry, I was biased by the saveSLD feature. You're right there is no relation with dataProvider.

@nyalldawson
Copy link
Contributor

First one to use the new interfaces to write an Autodesk Vault plugin gets a massive thumbs up from me! I'm guessing we'll see a git project plugin at since stage too.

Proposal looks good to me, but I'm still a bit unclear how the auxiliary storage would work with it. Can you clarify that?

Just to put an end to the "don't use XML blob" arguments: it's simply not possible until qgis 4.0 at the minimum -- XML reading and writing is baked into the stable API in hundreds of QGIS classes. We CANNOT change this.

@nyalldawson
Copy link
Contributor

One more question: will there be a common interface for querying available projects from a backend?

@wonder-sk
Copy link
Member Author

@nyalldawson I would say that if auxiliary storage is needed with the project, the sqlite database file should be saved as a zipped project with the .qgd file in the zip file. That seems like the only reasonable solution to me. Creating project-specific tables with aux data inside postgres seems just too complicated and fragile. Often only admins are allowed to create new tables in shared databases.

will there be a common interface for querying available projects from a backend?

Yes: there should be virtual methods to read/write project, list projects, remove project, rename project (?) and for display of backend specific GUI to pick project name for load/save.

@nyalldawson
Copy link
Contributor

I would say that if auxiliary storage is needed with the project, the sqlite database file should be saved as a zipped project with the .qgd file in the zip file.

The issue here is that I can only see our reliance on auxiliary tables growing more with time, and this limitation will definitely hurt.

At the same time, I'm also against trying to recreate auxiliary tables on the server.

Just thinking aloud, but could a big blob of the zipped data just be thrown in as a column in the database table?

@NathanW2
Copy link
Member

NathanW2 commented Mar 19, 2018 via email

@cbertelli
Copy link

Using a database as if it was a filesystem has some side effects. Having PostgreSQL parse XML could help avoid security issues. Storing the project as a blog saves a lot of space, but has some drawbacks.

@haubourg
Copy link
Member

@cbertelli are you talking about locks ?
what security issues do you have in mind?

@cbertelli
Copy link

XML is a structured data inside PostgreSQL, the DBMS checks it before storage and you can also query it with xpath. You cannot write "format C:\ /s" inside it as a "joke" for your buddy. If you want to implement security checks you don't need to use huge and obscure regular expressions to find out threats.

@vpicavet
Copy link
Member

Hi,

How do you deal with user concurrency ? 

  • User A opens a project from PG and starts working.
  • User B opens the same project
  • User A writes the project in PG
  • What happens when user B wants to save ?

Any conflict management mechanism ? Like hashes of the project loaded and saved so as to warn the user if he is going to overwrite a different project than he initially loaded ? Or versioning the projects ?

What would be the mechanisms to clean the projects DB ?

@vpicavet
Copy link
Member

Also : 

  • the location of the project's table should be configurable ( which schema)
  • where do you get the user name from ?
  • Project files could contain private information ( passwords). The documentation should mention the risk clearly, if there is no other way to mitigate the information dissemination risk

@wonder-sk
Copy link
Member Author

@vpicavet The project storage interface does not deal with user concurrency at all - it is left for backends to deal with it. Some implementations may do versioning if they feel like doing that.

For PostgreSQL implementation I do not plan any conflict management or versioning: simply the last save wins - just as if people were storing projects on a shared network volume. If anyone has a need for versioning, there could be a more complicated "PostgreSQL with versioning" storage implementation.

Cleaning of projects DB - the storage implementations should support removal of projects as well. In GUI this could be triggered from browser panel or through custom GUI when loading/saving projects for the given implementation.

Location of the table: qgis_projects table will be created per schema where projects are saved. I don't think this needs to be configurable.

Where to get user names: current_user - see https://www.postgresql.org/docs/9.1/static/functions-info.html

Private information - agreed it is an important topic, but I think this is fairly independent from this QEP - the storage of projects in PostgreSQL is not really different from storage of project files on a shared network volume where the same risks apply.

@vpicavet
Copy link
Member

Well, I think for common users a filesystem is by default local, not shared, whereas a database is shared with other users by default.
I do think the minimum we can do is really put warnings in the documentation.
But a dialog warning to a user trying to overwrite someone else's job is much better imho, so that she can save her work under a new project.

As for the table location, if you can choose the schema it's indeed ok.

As for user names, you would stick with PostgreSQL user then. There are often shared user connections and cases where the user name would better be chosen from the OS or QGIS itself, but this probably does not matter that much.

@elpaso
Copy link

elpaso commented Mar 20, 2018

@vpicavet There are secure alternatives for credentials storage: the QGIS authentication database, storing credentials in a shared project is normally not a good idea.
Not everybody knows that one can manually assign the authentication configuration ID instead of using the automatically generated one, this is useful for sharing projects among an organization still allowing multiple users to connect by using their own credentials and without the need to share the credentials.

@haubourg
Copy link
Member

Well, I think for common users a filesystem is by default local, not shared, whereas a database is shared with other users by default.

Well, I mainly see file storage on shared network drives out there. I agree with Martin that the PG storage will not change the situation here. We have the service file definition or the authentication system to deal with externalized credentials and Auth.

@nyalldawson
Copy link
Contributor

@cbertelli

XML is a structured data inside PostgreSQL, the DBMS checks it before storage and you can also query it with xpath. You cannot write "format C:\ /s" inside it as a "joke" for your buddy. If you want to implement security checks you don't need to use huge and obscure regular expressions to find out threats.

I'm referring to MapInfo project format with that comment, not XML -- you can insert any kind of system command inside a mapinfo workspace and it's executed silently when loading the project! (This also applies to tab files loaded within mapinfo... shockingly insecure stuff!) Sorry, the discussion got sidetracked there.

I'm -0 on using a postgres XML data type to store the qgis project XML, simply because this would apply a validity check on the XML. This constraint isn't currently present, and I suspect it may break plugins (and possibly even core code).

As others have stated, better to treat qgis XML as its own proprietary format and not rely on parsing it. The format changes too frequently for any parser to be stable (and indeed - even when qgis server itself used to use this approach it was extremely fragile).

@haubourg
Copy link
Member

haubourg commented Mar 20, 2018

As others have stated, better to treat qgis XML as its own proprietary format and not rely on parsing it. The format changes too frequently for any parser to be stable (and indeed - even when qgis server itself used to use this approach it was extremely fragile).

+10 !

@NathanW2
Copy link
Member

As others have stated, better to treat qgis XML as its own proprietary format and not rely on parsing it. The format changes too frequently for any parser to be stable (and indeed - even when qgis server itself used to use this approach it was extremely fragile).

Yes although maybe we should just store the qgz format as blob and be done with. If you are not meant to parse it from the database directly anyway we can store the other project data in a single file like the file system.

@wonder-sk can I suggest putting in a "version" column which is just an incrementing id that gets changed on save. This can be used in future to compare the local version to the server version to see if someone else has written to that record and if they have you can then see what the user id and date time is.. We can use date and time for this however it allows for change the database timezone (lets say you have it in AWS and move the region) without breaking the version check.

@nyalldawson
Copy link
Contributor

@NathanW2

can I suggest putting in a "version" column which is just an incrementing id that gets changed on save. This can be used in future to compare the local version to the server version to see if someone else has written to that record and if they have you can then see what the user id and date time is.. We can use date and time for this however it allows for change the database timezone (lets say you have it in AWS and move the region) without breaking the version check.

I think we could generalise this a bit, if QgsProjectStorage had some virtual methods like virtual QVariant generateProjectVersionHash( ... ) and virtual bool projectHasChanged( const QVariant& versionHashOnProjectLoad,... )

Currently the file-based projects have a nice feature where the modified timestamp is checked before save -- this could be extended to use projectHasChanged to allow the storage provider to flag whether the change has occured. And if we use variants, then this could be done by comparing some timestamp, or by a hash of project contents, etc,.. whatever makes sense for that provider.

@nyalldawson
Copy link
Contributor

@wonder-sk

Haven't thought about the metadata much really and I am not even completely convinced we need those for the table, but it seemed like a good idea as one can get similar metadata from filesystem. Using jsonb could be a good option to keep it extensible for the future...

I'd be +1 on jsonb here. I think this could then work nicely alongside #115 and we could add the other project metadata there too - e.g. keywords/subject/title/abstract/etc.

@wonder-sk
Copy link
Member Author

@NathanW2 I would really like to stay away from adding any extra column like "version" at the project storage level:

  • I think of project storage as something similar to a file system directory - one can create/remove files (projects), read/write them and get basic file system level metadata (who / when changed what). With this thinking, addition of anything like version number simply does not fit the picture: if such feature is not supported by ordinary directories in a file system, it should not be supported in project storage either.
  • addition of any extra piece of information that we need to store with projects outside of the project .qgs/.qgz file is increasing the system complexity... If we want to have such an extra value accessible, then we need to have support for it in the storace backend interface and QgsProject API - e.g. query version, reset version (?) and so on. And support that for file system based projects as well (how?)
  • last modified time should work fine even when there are changes in timezone (I believe file timestamps are stored in UTC, so timezone independent)
  • I am still trying to understand the concept of project versions and all its implications (see my comments in [needs-doc] Add stable id, save id, save count to project spec QGIS#6527)

@NathanW2: maybe we should just store the qgz format as blob and be done with.

Working on the implementation for a bit, this seems like the only reasonable solution. Otherwise we get this explosion of combinations: 1. xml or zip, 2. with or without aux db, 3. file system or custom storage. If we allow all options, we have 2 x 2 x 2 = 8 possible cases that may need different handling in different cases. I am just a simple person - my head may explode when trying to deal with more than few combinations.

@nyalldawson if I understand correctly your suggestion regarding #115, you would like to have a cache of some pieces of project metadata like title/keywords to be able to query those quickly without having to open the whole project? I can imagine having optional support for that in project storage interface at some point. I am just not looking forward to the day when someone will want to cache also map thumbnails :-)

@NathanW2
Copy link
Member

@wonder-sk I'm ok if you don't want to implement it first go just maybe do what Nyall had and have a virtual method to get the version hash and a method to compare the version which can then just be what ever the project storage thinks is the best method to work that out.

We will have a bit of time left for 3.2 so I would say do whatever you think is best to get it merged and then we can test it out.

@pcav
Copy link
Member

pcav commented Mar 21, 2018

IMHO versioning can also be done by the backend, via rules or triggers, and should be left for the future.

@rduivenvoorde
Copy link
Contributor

About concurrency: would it be an idea to force single write-use of a project and have a 'locked' column. So the first user 'locks' the project (username written in locked column)?
And a second user to open the project gets a message:
"Project already opened by wonder-sk, do you want to open the project read-only?
Or break the lock (and maybe have an angry wonder-sk)?".

@wonder-sk
Copy link
Member Author

@rduivenvoorde this kind of locking would be tricky to get right. Problems I see:

  1. if QGIS crashes or a user leaves for holiday with such project open, the project would stay locked. People would need to break the locks.
  2. We do not have a concept of read-only projects now - given how many places in the code can modify a project, this could be a larger chunk of work by itself
  3. Often people use shared db accounts, so the locking wouldn't even detect that the lock is owned by someone else
  4. The whole support for locking would need to be baked into the project storage interface, increasing its complexity and diverging from "ordinary" file system storage where such locks are not supported even if there are multiple users (on network volumes)

Nyall had a good point - when saving a project, QGIS checks whether the timestamp has not changed since the timestamp when it was loaded - if it did, it shows a warning: "The loaded project file on disk was meanwhile changed. Do you want to overwrite the changes?". It seems to me that this is good enough if we extend it to custom project storage as well.

@haubourg
Copy link
Member

agreed with @wonder-sk here. Locking tools are good ideas at start and end-up in nightmares so often.

@cbertelli
Copy link

I understand and I admit all my suggestions may become constraints and slow down development, but I've learnt to think that standards are opportunities for freedom more that constraints. @doublebyte1's ideas (thanks @wonder-sk for pointing them out) and development are really promising. Would it be feasible to split this proposal in two parts, one that build upon existing standards, the other that stores what is not yet stable or not useful for the user?

@wonder-sk
Copy link
Member Author

@cbertelli I am not sure if splitting the proposal would really help anything. In the current form it covers 1. project storage interface, 2. implementation for PostgreSQL. Anyone is free to implement a backend of their choice - either storing QGIS project format directly or using a different format that's understood by other applications as well.

@uprel
Copy link

uprel commented Jun 7, 2018

I have a question on this feature I see already implemented. Does QGIS Server also supports this and how?

@thjack
Copy link

thjack commented Jul 6, 2018

Hello I just tried this option from windows 7 with postgres 9.4 and Qgis Bon 3.2 is not working

I have activated the option to save projects in the postgres connection

Maybe some additional configuration is required?

Please help this option is more than interesting for me

@saberraz
Copy link

saberraz commented Jul 6, 2018

Please file a ticket under here:
https://issues.qgis.org/projects/qgis/issues
This page is not for reporting bugs.

@dpsspatial
Copy link

I have noticed that all users of a database must alter their connection properties to enable saving of QGIS projects in PostgreSQL. Seems this should only be done once by the DBO without every user having to alter their connection details...?

@3nids 3nids closed this as completed Sep 7, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests