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
62b53acc
Commit
62b53acc
authored
Sep 09, 2003
by
Barry Lind
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up some unused import warnings in the example jdbc code
parent
2fab6168
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2 additions
and
9 deletions
+2
-9
src/interfaces/jdbc/example/Unicode.java
src/interfaces/jdbc/example/Unicode.java
+0
-1
src/interfaces/jdbc/example/basic.java
src/interfaces/jdbc/example/basic.java
+1
-2
src/interfaces/jdbc/example/datestyle.java
src/interfaces/jdbc/example/datestyle.java
+0
-1
src/interfaces/jdbc/example/metadata.java
src/interfaces/jdbc/example/metadata.java
+0
-1
src/interfaces/jdbc/example/psql.java
src/interfaces/jdbc/example/psql.java
+0
-1
src/interfaces/jdbc/example/threadsafe.java
src/interfaces/jdbc/example/threadsafe.java
+1
-2
src/interfaces/jdbc/org/postgresql/test/jdbc2/ResultSetTest.java
...erfaces/jdbc/org/postgresql/test/jdbc2/ResultSetTest.java
+0
-1
No files found.
src/interfaces/jdbc/example/Unicode.java
View file @
62b53acc
package
example
;
import
java.io.*
;
import
java.sql.*
;
import
java.util.*
;
...
...
src/interfaces/jdbc/example/basic.java
View file @
62b53acc
...
...
@@ -2,11 +2,10 @@ package example;
import
java.io.*
;
import
java.sql.*
;
import
java.text.*
;
/*
*
* $Id: basic.java,v 1.1
3 2002/09/06 21:23:05 momjian
Exp $
* $Id: basic.java,v 1.1
4 2003/09/09 11:24:04 barry
Exp $
*
* This example tests the basic components of the JDBC driver, and shows
* how even the simplest of queries can be implemented.
...
...
src/interfaces/jdbc/example/datestyle.java
View file @
62b53acc
...
...
@@ -2,7 +2,6 @@ package example;
import
java.io.*
;
import
java.sql.*
;
import
java.text.*
;
/*
* This example tests the various date styles that are available to postgresql.
...
...
src/interfaces/jdbc/example/metadata.java
View file @
62b53acc
...
...
@@ -2,7 +2,6 @@ package example;
import
java.io.*
;
import
java.sql.*
;
import
java.text.*
;
/*
* This example application is not really an example. It actually performs
...
...
src/interfaces/jdbc/example/psql.java
View file @
62b53acc
...
...
@@ -2,7 +2,6 @@ package example;
import
java.io.*
;
import
java.sql.*
;
import
java.text.*
;
/*
* This example application demonstrates some of the drivers other features
...
...
src/interfaces/jdbc/example/threadsafe.java
View file @
62b53acc
...
...
@@ -2,7 +2,6 @@ package example;
import
java.io.*
;
import
java.sql.*
;
import
java.text.*
;
// rare in user code, but we use the LargeObject API in this test
import
org.postgresql.largeobject.*
;
...
...
@@ -106,7 +105,7 @@ public class threadsafe
// will yield as long as either of the children are still running
System
.
out
.
println
(
"Waiting for threads to run"
);
while
(
thread1
.
isAlive
()
||
thread2
.
isAlive
()
||
thread3
.
isAlive
())
thread0
.
yield
();
Thread
.
yield
();
}
finally
{
...
...
src/interfaces/jdbc/org/postgresql/test/jdbc2/ResultSetTest.java
View file @
62b53acc
...
...
@@ -4,7 +4,6 @@ import org.postgresql.test.TestUtil;
import
java.sql.Connection
;
import
java.sql.ResultSet
;
import
java.sql.Statement
;
import
java.sql.SQLException
;
import
junit.framework.TestCase
;
...
...
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