2
votes
2answers
35 views

sharing a JDBC Connection object between other objects

I have created a Database class which uses a static connection object in order to be used in common between instances of itself. my question is that is there any problem with this approach or not? ...
3
votes
1answer
44 views

Optimizing database performance for java server

I have a live java server. It has a DatabaseManager class for database connection, operation and closing. But there are a lot of database activities going on (even more than 50 clients simultaneously ...
0
votes
1answer
38 views

Connecting via JDBC to OpenEdge in Talend

In "Talend Data Integration" I want to create a connection using JDBC to a Progress OpenEdge database. I have no experience whatsoever with this type of connection. My ODBC-connections to the same ...
1
vote
3answers
44 views

class not found com.mysql.jdbc.Driver jdbc when tying to connect to a Mysql Database

I ' m developping a web application in java where i m trying to connect to a MySQL database using JDBC template ( with springs dao) but i always get : SEVERE: Servlet.service() for servlet ...
0
votes
2answers
232 views

Cannot Open Connection Exception: Generic JDBC Exception

I thought I was getting this error because I didn't haave the ojdbc14.jar deployed inside /common/lib. The issue still remains even after I did it. Stacktrace HTTP Status 500 - type Exception ...
0
votes
1answer
87 views

Unable to connect to the oracle database due to IP change

I have set up oracle11g database on my system which is accessed by two other machines through JDBC. But due to some reason the IP address of my system has been changed. I am not able to access the ...
0
votes
1answer
75 views

Can a Connection object be used with a JDBC RowSet instance outside of a constructor?

I am aware that a JDBC RowSet instance can be created with a Connection object passed to its constructor, eg.: Connection con = MyDAO.getConnection(); JdbcRowSet jrs = new JdbcRowSetImpl(con); Two ...
0
votes
1answer
70 views

Creating Connection pooling in java

I am creating a connection pooling in for my application..For that i just wan to know where to keep context.xml which has Resource name,username,password, driver Class Name what s the difference ...
0
votes
0answers
144 views

MySQL DB connection : Communication link failure

I need to use the ASSAM WSDL annotator (this), and apparently it needs to be connected to a database. I create the DB via the MySql component of Wamp Server (2.0). Thing is, I can't connect to DB. ...
1
vote
3answers
92 views

eclipse mysql connectivity

I am working on a project where we need to access tables from mysql database. But, I keep getting the following exception in eclipse. java.lang.classnotfoundexception com.mysql.jdbc.driver I have ...
-1
votes
2answers
114 views

Why am I getting ResultSet is closed error when I never closed any

I have this error in my code and have checked and edited it thoroughly, yet I still get same issue. I also use multiple resultSet and Statements yet same error occurs. Below is the error I get: ...
5
votes
1answer
274 views

Cassandra / Eclipse - Can't make connection

So I'm using Cassandra in my project and I have to make a connection between Eclipse and the data base. I tried to use a JDBC-compliant driver that I found on code.google.com but I'm getting this ...
1
vote
2answers
98 views

does singleton instance of connection object creates issue in web application

I am using below code snippet to create a singleton instance of Connection object for a web application which will be used by multiple users. static { try { String driver = ...
0
votes
0answers
105 views

JDeveloper and mySQL interconnection

I have problem usgin mySQL connector with JDeveloeper. I have downloaded JDBC Driver for MySQL (Connector-J) from mysql.com (see bellow codeherehere for direct link). Local mySQL database is working ...
1
vote
0answers
145 views

playframework and mysql - how to pass connection properties?

from application.conf: db.default.url=jdbc:mysql://localhost/mydb?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&more Conn Properties I'm coming from java/spring/wicket to ...
0
votes
3answers
303 views

No suitable driver found for jdbc in java

Im new in sql server, and want to create connection between java and sql server. my connection code is: public static void main(String[] args) { Connection con; try { String ...
0
votes
1answer
203 views

How to detect closed connections in connection pool?

Imagine having an active BoneCP jdbc connection pool when the network connectivity goes down, then comes back after a minute. In order to automatically reconnect and recreate the pool, how should ...
0
votes
3answers
100 views

Connection changes at RUN TIME in JAVA app

I have to create a JSP in which there is a screen which makes DB connection at runtime, means i have to provide DB details (thin client / driver info etc) at run time and then connect and procced ...
5
votes
3answers
213 views

Is there a safe way to tell if a JDBC connection is still ok?

We have a web server handling requests from clients. One component of this web server holds a connection to a database. I need to be able to recognise if the connection has been closed or is in some ...
0
votes
1answer
333 views

Android Oracle Database JDBC6

Hi i want to create a connection to my Oracle database. i previously used ojdbc14.jar and everything was working fine, but the connection should be secure and i want to encrypt the files. so i decided ...
0
votes
4answers
155 views

Java to mysql jdbc connection problems

I'm new with getting a java applet to connect to a mysql database. This is my first time attempting to do so. I've researched a lot and have seen lots of tutorials, but I'm still facing problems. ...
0
votes
0answers
231 views

how to escape special characters in mysql jdbc connection string

im trying to connect to a remote database. im sure that the remote database provide me all the privileges. but im getting this error when trying to connect to the remote mysql database through jdbc ...
0
votes
1answer
260 views

ClassNotFoundException with PostgreSQL and JDBC

I am having some difficulty in making connectivity with Java and PostgreSQL Database.I have download the JDBC4 Postgresql Driver, Version 9.2-1002 driver and properly set the application ClassPath. My ...
-2
votes
1answer
100 views

Connection and Statement closed exception [closed]

I have a java class in that I have written code to get values from an Oracle table and storing them in a hashmap, returning the values in a JSP page. I am refreshing that page every 3 minutes. For ...
1
vote
2answers
103 views

Dynamically change connection property on connection obtained from Java JNI connection pool

I'm using Java and retrieving my database connections from a JNI connection pool (Weblogic Server). I want to set the connection property, oracle.jdbc.V8Compatible="true", for the connections I ...
0
votes
1answer
1k views

Connect to mysql remote database using JDBC?

I'm a java beginner and I'm working on a simple application which connects to a remote mysql database using JDBC. I've tested it locally and it works just fine, however I cannot get it to work on for ...
0
votes
1answer
605 views

Attach Sqlite Database in Java

I have a problem to attach a Database and insert all rows from attached databases to the main. Here is my code. public void selectOldDb(String dbName) throws Exception { createNewDB(); ...
0
votes
1answer
57 views

Hook JDBC Connection.Close() Method

I have a requirement to Hook the excisting class methods and do some sort of logging. The classes are written and placed as Jars in the Application. A Typical example on my scenario is as follows. ...
0
votes
1answer
114 views

ClassNotFoundException in SQL and JDBC

I encounter this error "java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver". I have sqljdbc.jar in my project library and I also set path for it but the error still ...
1
vote
1answer
124 views

monitoring sql connection info with java

UPDATE: I solved this problem exactly the same way friends suggested. But I kind of missed the fact that I have to follow mysql's protocol in order to get the result. In mysql there is always an ...
7
votes
3answers
761 views

Connection behavior - DriverManager.getConnection() and DataSource.getConnection()

If I get a connection object using DriverManager.getConnection() and DataSource.getConnection(), how they differ in behavior when .close() is called on those objects? Before .close() method call, I ...
2
votes
2answers
505 views

Close JDBC connections after a set timeout period?

Is there a way to close JDBC connections after a set timeout period? These connections are being created in a GenericObjectPool. I know the pool can close idle connections in the pool, but what ...
0
votes
2answers
364 views

Spring ClassPathXmlApplicationContext data connection

I'm trying create a connection using Spring 3.2.0 but I get NullPointerException of: ApplicationContext ctx = new ClassPathXmlApplicationContext("conexao/conexao.xml") my file conexao.xml is in ...
0
votes
2answers
157 views

Why JDBC driver call works in Tomcat but not in JBOSS

I have an application that makes a connection to a database via Tomcat using the following method in the DriverManager DriverManager.getConnection(url, user,password); This works fine in Tomcat ...
0
votes
3answers
361 views

jdbc statement connection

QUESTION: can YOU use multiple statements and recordset, which operate simultaneously, using the same connection in a non MULTI THREAD? I only found this question which interests me, but the answer ...
0
votes
1answer
774 views

How to connect to an Oracle DB from another system

I have installed Oracle 11g on my system and i am able to connect to database using simple java program. ORACLE_USER = "user1" ORACLE_PASSWORD = "user1" ORACLE_HOST = "localhost" ORACLE_SID = "ORCL" ...
1
vote
4answers
11k views

java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)

The following code: Class.forName("com.mysql.jdbc.Driver"); Connection m_connection = DriverManager.getConnection("jdbc:mysql://localhost","root","root"); Throws this exception on getConnection(): ...
0
votes
1answer
129 views

Creating JDBC transaction for second data source with existing connection pool in Glassfish

I have main data source for working with database, which uses some connection pool. Now I want to create a second data source, which would use the same connection pool to perform logging operations in ...
1
vote
5answers
694 views

How do I get the connection inside of a Spring transaction?

Imagine this code: foo() { Connection conn = ...; } foo() has been called from a method that has the annotation @Transactional. How do I get the current JDBC connection? Note that foo() is in ...
2
votes
3answers
353 views

Why should I call close() on a ResultSet and Connection instance?

When I don't need to use instances of those ResultSet and Connection anymore in my program, why should I call the .close() method on both of them ? What are the dangers (if any) of not doing so ?
2
votes
1answer
1k views

Getting a JDBC connection from EclipseLink

using EclipseLink as JPA 2.0 provider, I can obtain a JDBC connection by simply calling Connection con = entityManager.unwrap(Connection.class); But I'm unsure what I'm responsible for. Do I have ...
0
votes
4answers
814 views

JAVA: MySql: too many connection

I think that my application is cursed, debug goes where it wants and I don't know why. Line by line debugging seems to analyze also the commented rows. I think that the problems are on my Connection ...
1
vote
1answer
342 views

Derby/JDBC connection lifetime (or Idle Timeout)

Using JDBC to connect to a Derby database, after a while, Derby or JDBC close the connection automatically. (This may be called a "connection lifetime" value or a timeout value). Where can I find ...
0
votes
0answers
236 views

Java ExecutorService JDBC connection timeout

I am making use of an ExecutorService in a server side spring bean. The problem I think is that when the ExecutorService creates the thread/s for the pool, it then also takes a DB connection from the ...
0
votes
0answers
133 views

How to implement isValid connection for using with Oracle driver classes12?

I need implement boolean isValid(int timeout) like in jdk6 for java.sql.Connection. But should use Oracle thin driver classes12. It is clear that I can run small query, but what about timeout? ...
1
vote
0answers
150 views

DBCP Connection Pool loginTimeout

According to the DBCP Document, BasicDataSource does not support setLoginTimeout(). My question is then how do I set a LoginTimeout for the creation of Connection objects? I know I can set maxWait on ...
1
vote
4answers
558 views

Java JDBC efficiency: How long should a connection be maintained?

I'm still working on the same problem mention here. It seems to work fine especially after creating an AbstractModel class shown below: public abstract class AbstractModel { protected static ...
0
votes
1answer
687 views

DBCP Connection Pool leak : Connection.close() don't return the Connection to the pool and the connection is exhausted

DBCP connection pool leak . When the program return the connection used, the connection resource is not returned to the pool and is exhausted !!! So, in maxActive time Connection.close(), the pool ...
1
vote
2answers
449 views

jdbc connection fails while running the program from jar file

I've got an application, where I use a JDBC connection. When I run it from the Eclipse environment, there's no problem with anything, neither with connection. But, when I pack it into executable jar ...
0
votes
3answers
814 views

Connecting servlet to database as400

I am trying to develop an android application that needs to connect to a remote database as400, through a java servlet and give back a JSON object to the user. This is my DoGet Method code: ...

1 2 3