Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
51610855
"README.md" did not exist on "991825cc4490e6ca14e320daff7d0e7e8bac0b3d"
Commit
51610855
authored
17 years ago
by
brinn
Browse files
Options
Downloads
Patches
Plain Diff
change: improve error reporting by throwing better exceptions
SVN: 773
parent
73e86d71
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dbmigration/source/java/ch/systemsx/cisd/dbmigration/DatabaseConfigurationContext.java
+18
-2
18 additions, 2 deletions
...stemsx/cisd/dbmigration/DatabaseConfigurationContext.java
with
18 additions
and
2 deletions
dbmigration/source/java/ch/systemsx/cisd/dbmigration/DatabaseConfigurationContext.java
+
18
−
2
View file @
51610855
...
...
@@ -24,6 +24,7 @@ import org.apache.commons.dbcp.BasicDataSource;
import
org.springframework.jdbc.support.lob.LobHandler
;
import
ch.systemsx.cisd.common.db.ISequencerScriptProvider
;
import
ch.systemsx.cisd.common.exceptions.ConfigurationFailureException
;
/**
* Configuration context for database operations.
...
...
@@ -77,8 +78,23 @@ public class DatabaseConfigurationContext
private
final
DataSource
createDataSource
()
{
final
BasicDataSource
myDataSource
=
new
BasicDataSource
();
myDataSource
.
setDriverClassName
(
getDriver
());
final
String
url
=
MessageFormat
.
format
(
getUrlTemplate
(),
getDatabaseName
());
final
String
dsDriver
=
getDriver
();
if
(
dsDriver
==
null
)
{
throw
new
ConfigurationFailureException
(
"No db driver defined."
);
}
final
String
dsUrlTemplate
=
getUrlTemplate
();
if
(
dsUrlTemplate
==
null
)
{
throw
new
ConfigurationFailureException
(
"No db url template defined."
);
}
final
String
dsDatabaseName
=
getDatabaseName
();
if
(
dsDatabaseName
==
null
)
{
throw
new
ConfigurationFailureException
(
"No db name defined."
);
}
myDataSource
.
setDriverClassName
(
dsDriver
);
final
String
url
=
MessageFormat
.
format
(
dsUrlTemplate
,
dsDatabaseName
);
myDataSource
.
setUrl
(
url
);
myDataSource
.
setUsername
(
owner
);
myDataSource
.
setPassword
(
""
);
...
...
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