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
8304a395
Commit
8304a395
authored
Nov 01, 2001
by
Barry Lind
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor improvements on Dave's last checkin
parent
01da8e91
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
src/interfaces/jdbc/org/postgresql/Connection.java
src/interfaces/jdbc/org/postgresql/Connection.java
+2
-7
src/interfaces/jdbc/org/postgresql/Driver.java.in
src/interfaces/jdbc/org/postgresql/Driver.java.in
+1
-1
No files found.
src/interfaces/jdbc/org/postgresql/Connection.java
View file @
8304a395
...
...
@@ -11,7 +11,7 @@ import org.postgresql.util.*;
import
org.postgresql.core.*
;
/**
* $Id: Connection.java,v 1.3
3 2001/10/31 20:26:01 davec
Exp $
* $Id: Connection.java,v 1.3
4 2001/11/01 01:08:36 barry
Exp $
*
* This abstract class is used by org.postgresql.Driver to open either the JDBC1 or
* JDBC2 versions of the Connection class.
...
...
@@ -110,16 +110,11 @@ public abstract class Connection
if
(
info
.
getProperty
(
"user"
)
==
null
)
throw
new
PSQLException
(
"postgresql.con.user"
);
PG_PASSWORD
=
info
.
getProperty
(
"password"
);
// allow a null password D.C.
if
(
PG_PASSWORD
==
null
)
PG_PASSWORD
=
""
;
this_driver
=
d
;
this_url
=
url
;
PG_DATABASE
=
database
;
PG_USER
=
info
.
getProperty
(
"user"
);
PG_PASSWORD
=
info
.
getProperty
(
"password"
,
""
);
PG_PORT
=
port
;
PG_HOST
=
host
;
PG_STATUS
=
CONNECTION_BAD
;
...
...
src/interfaces/jdbc/org/postgresql/Driver.java.in
View file @
8304a395
...
...
@@ -33,7 +33,7 @@ public class Driver implements java.sql.Driver
protected
static
final
int
ERROR
=
3
;
protected
static
final
int
FATAL
=
4
;
private
static
int
logLevel
=
DEBUG
;
private
static
int
logLevel
=
FATAL
;
static
{
...
...
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