You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: product_docs/docs/epas/18/application_programming/ecpgplus_guide/installing_ecpgplus.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,31 +7,31 @@ On Windows, ECPGPlus is installed by the EDB Postgres Advanced Server installati
7
7
8
8
## Installing ECPGPlus
9
9
10
-
On Linux, install with the `edb-as<xx>-server-devel` RPM package or `edb-as<xx>-server-dev` APT package, where `<xx>` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
10
+
On Linux, install with the `edb-as<xx>-server-ecpg-devel` RPM package and `edb-as<xx>-server-devel` RPM package or `edb-as<xx>-server-dev` APT package, where `<xx>` is the EDB Postgres Advanced Server version number. On Linux, the executable is located in:
11
11
12
12
```text
13
-
/usr/edb/as14/bin
13
+
/usr/edb/as18/bin
14
14
```
15
15
16
16
On Windows, the executable is located in:
17
17
18
18
```text
19
-
C:\Program Files\edb\as14\bin
19
+
C:\Program Files\edb\as18\bin
20
20
```
21
21
22
22
When invoking the ECPGPlus compiler, the executable must be in your search path (`%PATH%` on Windows, `$PATH` on Linux). For example, the following commands set the search path to include the directory that holds the ECPGPlus executable file `ecpg`.
23
23
24
24
On Windows:
25
25
26
26
```shell
27
-
set EDB_PATH=C:\Program Files\edb\as14\bin
27
+
set EDB_PATH=C:\Program Files\edb\as18\bin
28
28
set PATH=%EDB_PATH%;%PATH%
29
29
```
30
30
31
31
On Linux:
32
32
33
33
```shell
34
-
export EDB_PATH==/usr/edb/as14/bin
34
+
export EDB_PATH==/usr/edb/as18/bin
35
35
export PATH=$EDB_PATH:$PATH
36
36
```
37
37
@@ -114,7 +114,7 @@ In the sample makefile, make includes the `-C` option when invoking ECPGPlus to
114
114
If you include the `-C``PROC` keywords at the command line, in addition to the ECPG syntax, you can use Pro\*C command line syntax. For example:
0 commit comments