Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
Component Sharing
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
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gagandeep Singh Bhatia
Component Sharing
Commits
f5a78729
Commit
f5a78729
authored
Jun 19, 2026
by
Ajit Deshmukh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rresolved the issue reported by the QC for duplicate records in SQL Log screen
parent
aaf9789c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
Ajit/Manage SQL Changes APR-26/Java Components/ManageSqlConf.java
...age SQL Changes APR-26/Java Components/ManageSqlConf.java
+9
-0
No files found.
Ajit/Manage SQL Changes APR-26/Java Components/ManageSqlConf.java
View file @
f5a78729
...
@@ -2332,8 +2332,17 @@ public class ManageSqlConf extends ActionHandlerEJB {
...
@@ -2332,8 +2332,17 @@ public class ManageSqlConf extends ActionHandlerEJB {
}
else
{
}
else
{
try
{
connForSchema
=
connDriverForSchema
.
getConnectDB
(
schemaName
);
connForSchema
=
connDriverForSchema
.
getConnectDB
(
schemaName
);
}
catch
(
Exception
e
)
{
String
error
=
(
e
.
getMessage
()
!=
null
)
?
e
.
getMessage
()
:
e
.
toString
();
System
.
out
.
println
(
"Catch block for executeAndLog method for creating connection 1...."
+
error
);
logSqlExecution
(
tranId
,
enterpriseCode
,
"0"
,
requestID
,
inputSql
,
0
,
"E"
,
userId
,
chgTerm
,
error
,
""
);
}
String
schemaSql
=
"SELECT USER FROM DUAL"
;
String
schemaSql
=
"SELECT USER FROM DUAL"
;
PreparedStatement
schemaForPs
=
connForSchema
.
prepareStatement
(
schemaSql
);
PreparedStatement
schemaForPs
=
connForSchema
.
prepareStatement
(
schemaSql
);
...
...
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