mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Correct some EDB Postgres Advanced Server branding.
This commit is contained in:
parent
564ecc37db
commit
aee1492d0d
@ -25,7 +25,7 @@ class PGChildModule(object):
|
|||||||
class PGChildModule
|
class PGChildModule
|
||||||
|
|
||||||
This is a base class for children/grand-children of PostgreSQL, and
|
This is a base class for children/grand-children of PostgreSQL, and
|
||||||
all Postgres Plus version (i.e. Postgres Plus Advanced Server, Green Plum,
|
all EDB Postgres Advanced Server version (i.e. EDB Postgres Advanced Server, Green Plum,
|
||||||
etc).
|
etc).
|
||||||
|
|
||||||
Method:
|
Method:
|
||||||
|
@ -614,7 +614,7 @@ TODO LIST FOR BACKUP:
|
|||||||
if ((server_data.type && server_data.type == 'ppas') ||
|
if ((server_data.type && server_data.type == 'ppas') ||
|
||||||
server_data.server_type == 'ppas') {
|
server_data.server_type == 'ppas') {
|
||||||
preference_name = 'ppas_bin_dir';
|
preference_name = 'ppas_bin_dir';
|
||||||
msg = '{{ _('Please set binary path for EDB Advanced Server from preferences.') }}';
|
msg = '{{ _('Please set binary path for EDB Postgres Advanced Server from preferences.') }}';
|
||||||
}
|
}
|
||||||
|
|
||||||
var preference = pgBrowser.get_preference(module, preference_name);
|
var preference = pgBrowser.get_preference(module, preference_name);
|
||||||
|
@ -25,7 +25,7 @@ class BaseDriver(object):
|
|||||||
Inherit this class to implement different type of database driver
|
Inherit this class to implement different type of database driver
|
||||||
implementation.
|
implementation.
|
||||||
|
|
||||||
(For PostgreSQL/Postgres Plus Advanced Server, we will be using psycopg2)
|
(For PostgreSQL/EDB Postgres Advanced Server, we will be using psycopg2)
|
||||||
|
|
||||||
Abstract Properties:
|
Abstract Properties:
|
||||||
-------- ----------
|
-------- ----------
|
||||||
|
@ -118,7 +118,7 @@ class Connection(BaseConnection):
|
|||||||
Methods:
|
Methods:
|
||||||
-------
|
-------
|
||||||
* connect(**kwargs)
|
* connect(**kwargs)
|
||||||
- Connect the PostgreSQL/Postgres Plus servers using the psycopg2 driver
|
- Connect the PostgreSQL/EDB Postgres Advanced Server using the psycopg2 driver
|
||||||
|
|
||||||
* execute_scalar(query, params, formatted_exception_msg)
|
* execute_scalar(query, params, formatted_exception_msg)
|
||||||
- Execute the given query and returns single datum result
|
- Execute the given query and returns single datum result
|
||||||
@ -1665,7 +1665,7 @@ class Driver(BaseDriver):
|
|||||||
|
|
||||||
This driver acts as a wrapper around psycopg2 connection driver
|
This driver acts as a wrapper around psycopg2 connection driver
|
||||||
implementation. We will be using psycopg2 for makeing connection with
|
implementation. We will be using psycopg2 for makeing connection with
|
||||||
the PostgreSQL/Postgres Plus Advanced Server (EnterpriseDB).
|
the PostgreSQL/EDB Postgres Advanced Server (EnterpriseDB).
|
||||||
|
|
||||||
Properties:
|
Properties:
|
||||||
----------
|
----------
|
||||||
|
Loading…
Reference in New Issue
Block a user