Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
db491a6d
Commit
db491a6d
authored
24 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
SimpleDateFormat performance improvement, thread-safe.
Barry Lind
parent
39381507
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java
+8
-19
8 additions, 19 deletions
...terfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java
with
8 additions
and
19 deletions
src/interfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java
+
8
−
19
View file @
db491a6d
...
...
@@ -65,14 +65,6 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
this
.
sql
=
sql
;
this
.
connection
=
connection
;
// might just as well create it here, so we don't take the hit later
SimpleDateFormat
df
=
new
SimpleDateFormat
(
"''yyyy-MM-dd''"
);
tl_df
.
set
(
df
);
df
=
new
SimpleDateFormat
(
"yyyy-MM-dd HH:mm:ss"
);
tl_tsdf
.
set
(
df
);
for
(
i
=
0
;
i
<
sql
.
length
();
++
i
)
{
int
c
=
sql
.
charAt
(
i
);
...
...
@@ -95,17 +87,6 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
templateStrings
[
i
]
=
(
String
)
v
.
elementAt
(
i
);
}
/**
* New in 7.1 - overides Statement.close() to dispose of a few local objects
*/
public
void
close
()
throws
SQLException
{
// free the ThreadLocal caches
tl_df
.
set
(
null
);
tl_tsdf
.
set
(
null
);
super
.
close
();
}
/**
* A Prepared SQL query is executed and its ResultSet is returned
*
...
...
@@ -343,6 +324,10 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
public
void
setDate
(
int
parameterIndex
,
java
.
sql
.
Date
x
)
throws
SQLException
{
SimpleDateFormat
df
=
(
SimpleDateFormat
)
tl_df
.
get
();
if
(
df
==
null
)
{
df
=
new
SimpleDateFormat
(
"''yyyy-MM-dd''"
);
tl_df
.
set
(
df
);
}
set
(
parameterIndex
,
df
.
format
(
x
));
...
...
@@ -382,6 +367,10 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
public
void
setTimestamp
(
int
parameterIndex
,
Timestamp
x
)
throws
SQLException
{
SimpleDateFormat
df
=
(
SimpleDateFormat
)
tl_tsdf
.
get
();
if
(
df
==
null
)
{
df
=
new
SimpleDateFormat
(
"yyyy-MM-dd HH:mm:ss"
);
tl_tsdf
.
set
(
df
);
}
df
.
setTimeZone
(
TimeZone
.
getTimeZone
(
"GMT"
));
// Use the shared StringBuffer
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment