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

Added missing databased Implementation in section 6.1. #8410

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions docs/user_manual/introduction/project_files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ The extension for QGIS projects is ``.qgs`` but when saving from QGIS,
the default is to save using a compressed format with the ``.qgz``
extension.
The ``.qgs`` file is embedded in the ``.qgz`` file (a zip archive),
together with its associated sqlite database (``.qgd``) for
together with its associated SQLite database (``.qgd``) for
:ref:`auxiliary data <vector_auxiliary_storage>`.
You can get to these files by unzipping the ``.qgz`` file.

Expand All @@ -122,18 +122,19 @@ You can get to these files by unzipping the ``.qgz`` file.

.. _`saveprojecttodb`:

Projects can also be saved/loaded to/from a PostgreSQL database using the
following Project menu items:
Projects can also be saved/loaded to/from a PostgreSQL, GeoPackage or
Oracle database using the following Project menu items:

* :menuselection:`Project --> Open from`
* :menuselection:`Project --> Save to`

Both menu items have a sub-menu with a list of extra project storage
implementations (PostgreSQL and GeoPackage).
implementations (PostgreSQL, GeoPackage and Oracle).
Clicking the action will open a dialog to pick a GeoPackage connection
and project or a PostgreSQL connection, schema and project.
and project, a PostgreSQL connection, schema and project or Oracle
connection, owner and project.

Projects stored in Geopackage or PostgreSQL can also be loaded
Projects stored in GeoPackage, PostgreSQL or Oracle can also be loaded
through the QGIS browser panel, either by double-clicking them or by
dragging them to the map canvas.

Expand Down
Loading