set oracle database schema through hikaricp in springboot
up vote
0
down vote
favorite
I am using oracle database with hikaricp. I want to set database schema through hikaricp.
using ojdbc14-10.0.4 dependecy
java8
Can anyone tel me,how to set schema using hikaricp.
Thanks in advance.
hikaricp oracledb
add a comment |
up vote
0
down vote
favorite
I am using oracle database with hikaricp. I want to set database schema through hikaricp.
using ojdbc14-10.0.4 dependecy
java8
Can anyone tel me,how to set schema using hikaricp.
Thanks in advance.
hikaricp oracledb
I am getting error when i am using setschema() method.
– sree
Nov 22 at 6:20
error:Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.AbstractMethodError: oracle.jdbc.driver.T4CConnection.setSchema(Ljava/lang/String;)V
– sree
Nov 22 at 6:23
Possible duplicate of Configure OracleDataSource programmatically in Spring Boot with a default schema
– user7294900
Nov 22 at 6:24
Can't you use an "init SQL" that runsalter session set current_schema = ...
? Do you understand that the default schema in Oracle is defined by the user you use to connect? Usually you would just use the user's schema in Oracle
– a_horse_with_no_name
Nov 22 at 6:49
Are you really still using Java 1.4?
– a_horse_with_no_name
Nov 22 at 6:50
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using oracle database with hikaricp. I want to set database schema through hikaricp.
using ojdbc14-10.0.4 dependecy
java8
Can anyone tel me,how to set schema using hikaricp.
Thanks in advance.
hikaricp oracledb
I am using oracle database with hikaricp. I want to set database schema through hikaricp.
using ojdbc14-10.0.4 dependecy
java8
Can anyone tel me,how to set schema using hikaricp.
Thanks in advance.
hikaricp oracledb
hikaricp oracledb
asked Nov 22 at 6:19
sree
1
1
I am getting error when i am using setschema() method.
– sree
Nov 22 at 6:20
error:Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.AbstractMethodError: oracle.jdbc.driver.T4CConnection.setSchema(Ljava/lang/String;)V
– sree
Nov 22 at 6:23
Possible duplicate of Configure OracleDataSource programmatically in Spring Boot with a default schema
– user7294900
Nov 22 at 6:24
Can't you use an "init SQL" that runsalter session set current_schema = ...
? Do you understand that the default schema in Oracle is defined by the user you use to connect? Usually you would just use the user's schema in Oracle
– a_horse_with_no_name
Nov 22 at 6:49
Are you really still using Java 1.4?
– a_horse_with_no_name
Nov 22 at 6:50
add a comment |
I am getting error when i am using setschema() method.
– sree
Nov 22 at 6:20
error:Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.AbstractMethodError: oracle.jdbc.driver.T4CConnection.setSchema(Ljava/lang/String;)V
– sree
Nov 22 at 6:23
Possible duplicate of Configure OracleDataSource programmatically in Spring Boot with a default schema
– user7294900
Nov 22 at 6:24
Can't you use an "init SQL" that runsalter session set current_schema = ...
? Do you understand that the default schema in Oracle is defined by the user you use to connect? Usually you would just use the user's schema in Oracle
– a_horse_with_no_name
Nov 22 at 6:49
Are you really still using Java 1.4?
– a_horse_with_no_name
Nov 22 at 6:50
I am getting error when i am using setschema() method.
– sree
Nov 22 at 6:20
I am getting error when i am using setschema() method.
– sree
Nov 22 at 6:20
error:Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.AbstractMethodError: oracle.jdbc.driver.T4CConnection.setSchema(Ljava/lang/String;)V
– sree
Nov 22 at 6:23
error:Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.AbstractMethodError: oracle.jdbc.driver.T4CConnection.setSchema(Ljava/lang/String;)V
– sree
Nov 22 at 6:23
Possible duplicate of Configure OracleDataSource programmatically in Spring Boot with a default schema
– user7294900
Nov 22 at 6:24
Possible duplicate of Configure OracleDataSource programmatically in Spring Boot with a default schema
– user7294900
Nov 22 at 6:24
Can't you use an "init SQL" that runs
alter session set current_schema = ...
? Do you understand that the default schema in Oracle is defined by the user you use to connect? Usually you would just use the user's schema in Oracle– a_horse_with_no_name
Nov 22 at 6:49
Can't you use an "init SQL" that runs
alter session set current_schema = ...
? Do you understand that the default schema in Oracle is defined by the user you use to connect? Usually you would just use the user's schema in Oracle– a_horse_with_no_name
Nov 22 at 6:49
Are you really still using Java 1.4?
– a_horse_with_no_name
Nov 22 at 6:50
Are you really still using Java 1.4?
– a_horse_with_no_name
Nov 22 at 6:50
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424924%2fset-oracle-database-schema-through-hikaricp-in-springboot%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I am getting error when i am using setschema() method.
– sree
Nov 22 at 6:20
error:Failed to instantiate [javax.sql.DataSource]: Factory method 'dataSource' threw exception; nested exception is java.lang.AbstractMethodError: oracle.jdbc.driver.T4CConnection.setSchema(Ljava/lang/String;)V
– sree
Nov 22 at 6:23
Possible duplicate of Configure OracleDataSource programmatically in Spring Boot with a default schema
– user7294900
Nov 22 at 6:24
Can't you use an "init SQL" that runs
alter session set current_schema = ...
? Do you understand that the default schema in Oracle is defined by the user you use to connect? Usually you would just use the user's schema in Oracle– a_horse_with_no_name
Nov 22 at 6:49
Are you really still using Java 1.4?
– a_horse_with_no_name
Nov 22 at 6:50