diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-09-12 05:09:57 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-09-12 05:09:57 +0000 |
commit | 7f171b599a50d471d4791c768b538978b4a2dc95 (patch) | |
tree | 14e781e762ae6d60898505b43a0a819dee94c36e /src/interfaces/jdbc/org/postgresql/Connection.java | |
parent | 65edb541865032b5750cfe58cb8f7affbe1fc298 (diff) |
This patch implements the following command:
ALTER TABLE <tablename> OWNER TO <username>
Only a superuser may execute the command.
--
Mark Hollomon
mhh@mindspring.com
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/Connection.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/Connection.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/Connection.java b/src/interfaces/jdbc/org/postgresql/Connection.java index 33834118bda..fc908a43e9e 100644 --- a/src/interfaces/jdbc/org/postgresql/Connection.java +++ b/src/interfaces/jdbc/org/postgresql/Connection.java @@ -10,7 +10,7 @@ import org.postgresql.largeobject.*; import org.postgresql.util.*; /** - * $Id: Connection.java,v 1.5 2000/09/12 04:58:47 momjian Exp $ + * $Id: Connection.java,v 1.6 2000/09/12 05:09:54 momjian Exp $ * * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or * JDBC2 versions of the Connection class. @@ -112,12 +112,12 @@ public abstract class Connection throw new PSQLException("postgresql.con.pass"); this_driver = d; - this_url = new String(url); - PG_DATABASE = new String(database); - PG_PASSWORD = new String(info.getProperty("password")); - PG_USER = new String(info.getProperty("user")); + this_url = url; + PG_DATABASE = database; + PG_PASSWORD = info.getProperty("password"); + PG_USER = info.getProperty("user"); PG_PORT = port; - PG_HOST = new String(host); + PG_HOST = host; PG_STATUS = CONNECTION_BAD; encoding = info.getProperty("charSet"); // could be null |