Tagged Questions
0
votes
1answer
30 views
Sending NULL in a prepared statement for MySQL doesn't seem to work
I'm sending a prepared statement to be executed by MySQL and it looks like I'm following the protocol correctly but the server always returns:
Error 1210 - #HY000 - Incorrect arguments to ...
-1
votes
1answer
25 views
sql server lisiting table is not working properly when connect from java
I have executed select name from test1.sys.tables query in sqlcmd and got proper result.
But same query is not working in java-sql connection
querying from java lines.
String show_tbl_qry="select ...
0
votes
1answer
26 views
Possible solutions for a SQLNonTransientException
I am very new to database connections with Java and am having a difficult time connecting to the database I was provided. So far I've learned that installing the correct DB2 drivers may have been an ...
-2
votes
1answer
28 views
Quick way to connect to a remote MySql Database in Java [closed]
I wanted to connect to a database from within a Java-based framework. This essentially involves writing code to connect to a database. However, I cannot modify any build.xml file or so such as in ...
0
votes
4answers
41 views
Connection to Oracle Database with Java
I can't connect to my Oracle database server. This is the code :
import java.util.*;
import java.sql.*;
import java.io.IOException;
public class Knigi {
public static void main(String[] args) {
...
1
vote
1answer
47 views
How to make connection pooling for a web service
As an antecedent, I learned Java through online tutorials, so, please don't be too harsh with my questions, if I ask this here it's just because I don't know where to find an answer.
I need to write ...
0
votes
2answers
68 views
MySQL Server terminated and hibernate database connection not closing
I have used the following code to create database connection using Hibernate configuration file.
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property ...
1
vote
2answers
32 views
Connecting databases with java - driver Error [duplicate]
I'm trying to connect a java program I'm making about a university database that I created in MS Access.
My code goes like this:
package Uni;
import java.util.*;
import java.sql.*;
...
0
votes
0answers
47 views
Two connections at the same time to a single sqlite database
I am using a connection to a SQLite database using Java. The problem is when the database is running in its application, my connection is stopped until the database is deactivated. How do I get my ...
0
votes
0answers
26 views
Sqlite database connection is closing on me
I have a database adapter in my web service that when created, opens a connection to a Sqlite database:
public DatabaseAdapterJava(Database database)
{
try
{
...
-1
votes
0answers
27 views
ERROR com.inquira.client.tags.ContentDataTag - SQL Exception [closed]
2013/05/03 09:15:42 | 725194232 [http-8226-91] ERROR
com.inquira.client.tags.ContentDataTag - SQL Exception 2013/05/03
09:15:42 | java.sql.SQLException: Incorrect syntax near ')'.
2013/05/03 ...
0
votes
1answer
33 views
VBA connects fine but java doesn't
I am trying to connect to MYSQL server hosted on MAMP Pro. I am trying to connect from the same client machine using java and VBA. VBA connects fine but java gives me the error after few seconds
...
-1
votes
0answers
82 views
Cannot establish connection to hsqldb server remotely [closed]
EDIT: I am trying to start the HSQLDB server from the java application on my local PC and get the BindException Cannot assign requested address: JVM_Bind. The server is to be run on the network ...
0
votes
0answers
122 views
SQL state [null]; error code [0]; DSRA9110E: Connection is closed
The below query runs fine in one environment but gives following error in another environment:
SQL state [null]; error code [0]; DSRA9110E: Connection is closed.
Nested exception is
...
0
votes
1answer
23 views
Client-side DataSource in place of DriverManager
In Java, I use DriverManager for client side code and Connection pooled DataSource for server side code. Is this the standard way to do it or is it possible to use a separate DataSource on the client ...
-1
votes
0answers
93 views
How to create jar file with database tables,oracle,jdk1.6? Which also establishes connection [closed]
just one thing striking in my mind from many days. Hope you guys will help me for it?
Consider I created Java Stand alone application with Database connection.
Now I want to make installer of it or ...
-2
votes
1answer
52 views
Java connection to database not working
I need help with this code for establishing a connection to a database.
try
{
String str="SELECT * FROM Author WHERE city LIKE 'P%'";
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con =
...
1
vote
2answers
61 views
How do I connect to data base from servlet. I have tried the following code, but control goes to exception everytime
How do I connect to data base from servlet. I have tried the following code, but control goes to exception everytime.
try
{
int num_rows = 0;
Connection con ...
0
votes
3answers
82 views
java connecting to mysql database fails
I am creating a vaadin web application using tomcat and having an external database on another server. I am not able to connect to the external database no matter what. I have even created a new pure ...
0
votes
3answers
68 views
one base executeQuery method or one for every query
I've started creating a toDoList and I like to create a "DataMapper" to fire queries to my Database.
I created this Datamapper to handle things for me but I don't know if my way of thinking is ...
0
votes
1answer
132 views
mybatis mapper xml: The content of element type “mapper” must match
I'm having a hard time getting my simple mybatis file to work. I have this file:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
1
vote
1answer
43 views
Cannot connect to Oracle using SID
I m having web application where i connect with oracle with spring
my application is not working if i give SID in xml file
xml file entry is
<bean id="dataSource" ...
1
vote
1answer
68 views
when to use a db connection pool
I am working on a Java GUI and I often need to connect to the database,but I would like to only use the connection statements once,instead of writting the whole thing everytime i use it.
I guess I ...
4
votes
2answers
95 views
SQL ERROR: Closed Connection in java
Connection is closing automatically even if i'm not closing in finally block.
public String look( long id, String codeName, Connection conn ) throws SQLException
{
try
{
...
0
votes
1answer
78 views
Updating data on sql using java swing [closed]
I have a problem with my codes, dunno how to fix it, because I've been doing it over and over again... and same error occurred can anyone tell me what to do?
Here is my codes :
For my connection ...
0
votes
0answers
37 views
How to make my databaseconnect class to allow for concurrent use
I have create a class called databaseconnect which is responsible for:
connecting to database, method for filling combobox, method for authentification, method for insert, remove, modify,....
The ...
0
votes
3answers
57 views
Bridge Between Oracle and MS SQL Server
We are making an application which is machine dependent.
Now we deploy our application on several client machines but problem is that every client have database from different vendors. Currently we ...
1
vote
0answers
355 views
ReasonCode=54. ERRORCODE=-4499, SQLSTATE=08001
I am getting following error message,
A communication error occurred during operations on the connection's
underlying socket, socket input stream, or socket output stream.
Error location: ...
2
votes
1answer
61 views
using jdbc to query two databases to the same instance of sql server
In a Java standalone client server application (using Netbeans) I use a static method to connect to SQL server : but if I use the second connection I am getting the error :
Exception in thread ...
0
votes
1answer
21 views
Managing multiple connections to a DB in Java
I have a JAX-RS server that is hosted by heroku. Currently, we create one Connection to the DB (at startup) and all SQL statements acquire a lock, use the connection and release the lock. As we ...
1
vote
1answer
97 views
How DBConnectionPool will behave during Connection reset
In our project we are maintaining our own DB connection pool.
For resolving the issue 'java.sql.SQLRecoverableException: Io exception most of people has suggested to use standard connection pool ...
0
votes
4answers
55 views
Class loading error in Jdbc [duplicate]
I just created a Class Jdbc when i tried to run an error is shown.
Exception in thread "main" java.lang.NoClassDefFoundError: Jdbc
Here's the code
import java.sql.*;
public class Jdbc {
public ...
0
votes
3answers
191 views
java - DataSource for standalone application - no application server
I want to connect to a MySQL database from a standalone application. There is no application/web server.
This page suggests that I should use DriverManager to create the connection. However this page ...
2
votes
0answers
81 views
What to do if database connection check fails in bootstrap?
I am developing an app using grails. In the bootstrap part, I am checking and initialising database connections. Suppose the database is not available due to some problem its wise to send notification ...
0
votes
3answers
101 views
What is a validationQuery with respect to databases and JNDI?
I seem to be having the same exact problem as the poster of this original SO question.
The problem is, he answered his own question with the following comment:
I solved my problem, I added a ...
1
vote
1answer
45 views
Is there a method to get the Total JDBC connections?
I have a jabber bot that connects to a database to gather data and report it. In case a connection goes down it is re-established and DB connection is re-initiated. Is there a method that I can call ...
0
votes
1answer
128 views
Close Resource violation in Sonar
In my Dao classes, for closing db resources I have written a small function which takes in ResultSet, Connection and Statement objects and closes it.
I call this from finally block of each DB access ...
2
votes
1answer
77 views
Almost 12 seconds delay in getting the connection from a remote database on a network
I have a Java Swing application which access a remote database on a local network.
The code i used is as follow:
Class.forName("org.apache.derby.jdbc.ClientDriver");
...
-1
votes
1answer
53 views
phpmyadmin with java. Is there a way to get the strings from phpmyadmin and compare it with the input from the keyboard?
What I want to do is compare each word in the phpmyadmin database (columns and rows) with the user input from the keyboard. I know I can do this with a CSV file with equalsIgnoreCase. But I can't seem ...
1
vote
3answers
222 views
Database connection string for a remote database server named 'localhost'
I have a remote mysql database server setup on a machine myuniversity.edu and server is named 'localhost'. On it I have the database named 'MyDatabase'.
I want to connect it through Java.
The ...
1
vote
1answer
679 views
Connecting MS access database to registration form with netbeans 7.2 [closed]
Firstly I created one project and make the registration form in HTML page
[2]:
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" ...
1
vote
2answers
48 views
Check reachablity of servers in java programatically
In my application architecture I am having two database servers primary db and secondary db sever(Replica server).
In my java code i am making a connection with DB to fetch some data now what i want ...
1
vote
2answers
88 views
Database hangs while using static connection
I have one basic question here - I am working with a new Database named XpressMP.
I wrote a multithreaded program to insert lots of records into the database. I noticed one most important thing while ...
3
votes
3answers
655 views
Tomcat Connection Pool configuration: DataSource type and “Too many connection” error
I'm using the tomcat connection pool via JNDI resources.
In the context.xml:
<Resource name="jdbc/mydb" auth="Container" type="javax.sql.DataSource"
username="root" password="root" ...
-2
votes
1answer
356 views
In-use connections equal max-pool-size and expired max-wait-time. Cannot allocate more connections
I am facing following problem with an HTTP 500 status.
Message description:
The server encountered an internal error () that prevented it from
fulfilling this request.
Exception:
...
0
votes
3answers
226 views
How to check if another instance of Derby is already booted?
I'm writing some Java application that uses Java DB (i.e. Apache Derby) as database. I use the following method to connect to database:
Connection getConnection() throws SQLException {
...
1
vote
1answer
191 views
Single MySql Database Connection for REST service
I am developing Android application which Gets and Posts data to database through REST service. I have configures REST service with Jersey and Tomcat in Java.
I created single database connection ...
0
votes
0answers
111 views
SingleConnectionDataSource connection closed after about 40 minutes inactivity
We have a problem with org.springframework.jdbc.datasource.SingleConnectionDataSource?
We expect that the connection is never closed while the application is running, even if there is no traffic ...
1
vote
4answers
435 views
Connecting to external mysql database with DriverManager - Java
I imagine this is a simple syntax error on my part. I bought a web-hosting plan a while back and have some empty MySQL databases that I simply want to practice connecting to and passing some data.
...
4
votes
3answers
459 views
How to preinitialize DBCP connection pool on startup?
The setup of my project is -
Spring JDBC for persistence
Apache DBCP 1.4 for connection pooling
Mysql 5 on Linux
Here is the log of my application that captures the interactions with the ...



