Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
19630e0c
Commit
19630e0c
authored
Jun 25, 1999
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
b692c956
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/lib/ecpglib.c
src/interfaces/ecpg/lib/ecpglib.c
+3
-3
No files found.
src/interfaces/ecpg/ChangeLog
View file @
19630e0c
...
@@ -603,5 +603,9 @@ Wed Jun 16 20:21:42 CEST 1999
...
@@ -603,5 +603,9 @@ Wed Jun 16 20:21:42 CEST 1999
Thu Jun 24 18:06:43 CEST 1999
Thu Jun 24 18:06:43 CEST 1999
- Fixed C comment bug that caused ecpg to not accept quoted quotes.
- Fixed C comment bug that caused ecpg to not accept quoted quotes.
Fri Jun 25 07:17:10 CEST 1999
- Changed error message in ecpglib.c to list correct database name.
- Set library version to 3.0.0
- Set library version to 3.0.0
- Set ecpg version to 2.6.0
- Set ecpg version to 2.6.0
src/interfaces/ecpg/lib/ecpglib.c
View file @
19630e0c
...
@@ -1238,7 +1238,7 @@ ECPGconnect(int lineno, const char *dbname, const char *user, const char *passwd
...
@@ -1238,7 +1238,7 @@ ECPGconnect(int lineno, const char *dbname, const char *user, const char *passwd
actual_connection
=
all_connections
=
this
;
actual_connection
=
all_connections
=
this
;
ECPGlog
(
"ECPGconnect: opening database %s %s%s
\n
"
,
dbname
?
dbname
:
"
NULL
"
,
user
?
"for user "
:
""
,
user
?
user
:
""
);
ECPGlog
(
"ECPGconnect: opening database %s %s%s
\n
"
,
dbname
?
dbname
:
"
<DEFAULT>
"
,
user
?
"for user "
:
""
,
user
?
user
:
""
);
sqlca
.
sqlcode
=
0
;
sqlca
.
sqlcode
=
0
;
...
@@ -1247,8 +1247,8 @@ ECPGconnect(int lineno, const char *dbname, const char *user, const char *passwd
...
@@ -1247,8 +1247,8 @@ ECPGconnect(int lineno, const char *dbname, const char *user, const char *passwd
if
(
PQstatus
(
this
->
connection
)
==
CONNECTION_BAD
)
if
(
PQstatus
(
this
->
connection
)
==
CONNECTION_BAD
)
{
{
ECPGfinish
(
this
);
ECPGfinish
(
this
);
ECPGlog
(
"connect: could not open database %s %s%s in line %d
\n
"
,
dbname
?
dbname
:
"
NULL
"
,
user
?
"for user "
:
""
,
user
?
user
:
""
,
lineno
);
ECPGlog
(
"connect: could not open database %s %s%s in line %d
\n
"
,
dbname
?
dbname
:
"
<DEFAULT>
"
,
user
?
"for user "
:
""
,
user
?
user
:
""
,
lineno
);
register_error
(
ECPG_CONNECT
,
"connect: could not open database %s."
,
dbname
?
dbname
:
"
NULL
"
);
register_error
(
ECPG_CONNECT
,
"connect: could not open database %s."
,
dbname
?
dbname
:
"
<DEFAULT>
"
);
return
false
;
return
false
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment