Skip to content

Commit dd13943

Browse files
authored
Update installing_ecpgplus.mdx
1 parent 7e9aeb9 commit dd13943

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

product_docs/docs/epas/18/application_programming/ecpgplus_guide/installing_ecpgplus.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@ On Windows, ECPGPlus is installed by the EDB Postgres Advanced Server installati
77

88
## Installing ECPGPlus
99

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:
1111

1212
```text
13-
/usr/edb/as14/bin
13+
/usr/edb/as18/bin
1414
```
1515

1616
On Windows, the executable is located in:
1717

1818
```text
19-
C:\Program Files\edb\as14\bin
19+
C:\Program Files\edb\as18\bin
2020
```
2121

2222
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`.
2323

2424
On Windows:
2525

2626
```shell
27-
set EDB_PATH=C:\Program Files\edb\as14\bin
27+
set EDB_PATH=C:\Program Files\edb\as18\bin
2828
set PATH=%EDB_PATH%;%PATH%
2929
```
3030

3131
On Linux:
3232

3333
```shell
34-
export EDB_PATH==/usr/edb/as14/bin
34+
export EDB_PATH==/usr/edb/as18/bin
3535
export PATH=$EDB_PATH:$PATH
3636
```
3737

@@ -114,7 +114,7 @@ In the sample makefile, make includes the `-C` option when invoking ECPGPlus to
114114
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:
115115

116116
```shell
117-
$ ecpg -C PROC INCLUDE=/usr/edb/as14/include acct_update.c
117+
$ ecpg -C PROC INCLUDE=/usr/edb/as18/include acct_update.c
118118
```
119119

120120
To display a complete list of the other ECPGPlus options available, in the ECPGPlus installation directory, enter:

0 commit comments

Comments
 (0)