JDBC (Java DataBase Connectivity) is the base API which enables interacting with SQL database servers by executing SQL statements using the Java programming language.
0
votes
2answers
19 views
Does a database systems latest driver support all previous versions?
I trying to develop a program, which as a part of it functionality, needs to connect to a selected database(either Oracle, SQL Server, MySQL etc). I am using java for the program. Is it okay for me to ...
0
votes
1answer
30 views
How to work with subselects in combination with PreparedStatements?
For example I have the following SQL Code:
SELECT *
FROM customer c
WHERE 2 = (SELECT count(*)
FROM account a
WHERE a.cust_id = c.cust_id);
How can I transform that SQL ...
0
votes
1answer
75 views
java.sql.SQLException: Numeric Overflow while using IN operator
I implemented a Java application which queries a database based on given set of ids using the query:
select * from STUDENT where ID in (?)
The set of ids will be used to replace ?. However, ...
0
votes
2answers
258 views
Does MySQL included with MAMP not include a config file?
I can't seem to find the my.cnf or other config file for the MySQL that comes with MAMP. Does it not include one?
I want to use NetBeans for Java/MySQL Development and many articles on the web ...
0
votes
2answers
35 views
executeUpdate(String, int) method in Statement always returns 1
Can anybody tell me why the below method (executeUpdate) is always returning 1 even if I have specified to return the generated key in it? I want to get the generated key in generatedKey variable. It ...
0
votes
1answer
31 views
I can't delete from my SQL database using JTable
So... I want to delete a row from by database using a JTable, but I don't know why it doesn't get deleted, maybe the sintaxis of the DELETE isntruction is wrong...
borrar.addActionListener(new ...
6
votes
4answers
6k views
How to get all table names from a database?
I'd like to retrieve all table names from a database schema, and, if possible, get all table starting with a specified prefix.
I tried using JDBC's connection.getMetaData().getTables() but it didn't ...
8
votes
4answers
3k views
Is rollback needed if java.sql.Connection#commit() throws exception?
According to JAVA documentation, Connection#commit() can throw SQLException. My question is whether or not a rollback should still be issued in this scenario.
For example:
Connection con = null;
try ...
1
vote
1answer
17 views
Workaround for JDBC Limitation on Placeholders Fails for Update Statements
I am implementing a pattern to get around a JDBC limitation. For prepared statements, JDBC limits the number of placeholders to 2100. To get around this, I am using an xml string containing 2100+ ...
-1
votes
1answer
30 views
what can be used as an iterator while using prepared statement in jdbc;here I want to check if the customer exists
public void addCustomer(Customer customer) throws CustomerHomeException,
ClassNotFoundException {
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url = ...
3
votes
1answer
40 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
0answers
22 views
jdbcTemplate.execute(sql) hangs [closed]
i am using a simple piece of code to execute the sql.
If the sql executes a long time, then the program will hang on jdbcTemplate.execute(sql) even though the database finished the sql execution.
it ...
0
votes
1answer
15 views
Specify SSL to be used for jdbc in context.xml
I would like to have my jdbc connection used in the application using Jersey and Tomcat to be secured using SSL. The mySQL server already supports SSL, I have the necessary SSL certificate file ...
0
votes
1answer
33 views
No JDBC Driver class was specified by property hibernate.connection.driver_class
With this Pom.xml:
<!-- Hibernate resources -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
...
0
votes
2answers
45 views
How to put results from database in a LinkedHashMap
public List<ColorModel> getAllColor() {
String query = "SELECT * FROM COLOR";
List<ColorModel> colors = getjdbcTemplate().query(query, new ColorMapper());
return colors;
}
class ...
0
votes
2answers
32 views
Sql Command To Delete Values Taken From Text Fields [duplicate]
I use this command to insert a new client, I have a method in Java where I assign the values to the command:
insertNewPerson = connection.prepareStatement(
"INSERT INTO Addresses ...
0
votes
2answers
23 views
Stateful session bean doesnt work in production - NoSuchObjectLocalException
I have a problem with deployed Java web application containing one Stateful session bean. Everything works fine until I try to invoke this bean. I get an exception:
...
5
votes
1answer
57 views
why my JDBC call is consuming memory 4 times more that actual size of data
I wrote a small java program which loads data from DB2 database using simple JDBC call. I am using select query to get data and using java statement for this purpose. I have properly closed statement ...
0
votes
2answers
65 views
Display/Track/Delete Mysql Rows via JSP pages
Im having the following Problem:
I Have made a web application which runs on Apache Tomcat.
Im using a Mysql Database as backend database for my application. The application Simply provides a GUI ...
0
votes
2answers
41 views
Selecting Data from Filemaker Database Via JDBC
I am using JDBC to get data out of a file maker server v12.
For some unknown reason filemaker allows you to have spaces in your table names. I am unable to select these tables because I just get a ...
0
votes
1answer
18 views
getting Connection reset by peer exception (toplink)
I am using the following code to ensure that the file contents are written successfully to disk
public void copyFileFromUrl(URL source, File target, int count) throws IOException {
InputStream ...
1
vote
1answer
48 views
SQLException: No suitable driver found for jdbc:mysql://localhost:3306/dbname
I've inherited a project (and I have absolutly no experience of Java) and I'm rather stuck.
We have a server running redhat, which I needed to update one of the jar files. So I simply copied up the ...
1
vote
3answers
3k views
Java JDBC connection status
I am (successfully) connecting to a database using the following:
java.sql.Connection connect = ...
0
votes
0answers
22 views
sybase resulted in overflow
I am using JDBC to get Informations from a Sybase Database. if I am trying to get large results from the Server I get an Error Message.(CS libary error: 33816852/1/0: cs converter: cslib user api ...
1
vote
0answers
99 views
spring JDBC connection issue with postgres
I have an api in spring that performs crud operations on postgres db. after few insertions its trying to open a new jdbc connection and hangs for ever.
[DEBUG,StatefulPersistenceContext,main] ...
0
votes
1answer
45 views
cannot load the oracle driver
hey guys one more question
following is the informations
tell me in comments if more info is needed
INFO: Destroying singletons in ...
0
votes
0answers
47 views
JDBC only returns one row when multiple should be returned?
I'm trying to run the following query via JDBC:
String sql = "SELECT * FROM myTable ORDER BY someCol ASC LIMIT 30";
PreparedStatement st =
connection.prepareStatement(sql, ...
0
votes
1answer
163 views
Proper way to retrieve data in mysql database and display it in TableView in JavaFX 2.0?
As the title says, I need more suggestions for proper implementation of retrieving and displaying data to a TableView in JavaFX 2.0.
I've seen this relevant question and its referring to use a ...
1
vote
2answers
61 views
How to map the database values to object array?
public C[] getC() throws SQLException, ClassNotFoundException {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url = "jdbc:odbc:Mydb";
String user = "user1";
String password = ...
-3
votes
1answer
46 views
I am getting en error for the misplaced return statement while retriving the values for a particular ssnum from the mysql database
public Customer getCustomer(String ssNum) throws CustomerHomeException, ClassNotFoundException {
String query = "Select ssn, customer_name from customer ";
ResultSet rs = smt.executeQuery(query);
...
0
votes
0answers
40 views
constantly check database [duplicate]
I need to constantly check the embedded database against constantly changing values.
public void runInBG() { //this method called in a seperate thread
while(true) {
while(els.hasElements()) ...
0
votes
1answer
38 views
SQL Command To Delete Entry In Current Textfields For Java App
I have a Java program where I connect to a database running Tomcat. The app includes fields for First Name, last name, email, phone. I created a button when clicked allows you to add the entries in ...
0
votes
2answers
75 views
stored procedure returns just one row of multiple rows
I will start by giving you my table content
This is my stored procedure:
ALTER PROCEDURE dbo.getFoodsForOrder
(
@orderID INT,
@ID INT OUTPUT,
@food_restaurantID INT OUTPUT,
...
0
votes
0answers
24 views
A ResourcePool could not acquire a resource from its primary factory or source
I'm trying to connect to a database in Java, using jdbcTemplate and I'm gettin the error below. I have Googled for a long time and all solutions I found didn't solve my problem. I tried several ...
0
votes
0answers
31 views
getting Invalid column index when calling Procedural
i have Procedural that is takes two String arg and returns Interger value from database Oracle 10g .
when try to print out the result I'm getting Invalid column index .
the code is
try {
...
0
votes
1answer
27 views
PHP connect using JDBC
I have DBMS called BBJ DBMS. And installed JDBC , connecting to it via Java with no problems. but the thing i need to connect to it using PHP code. and this DBMC has ODBC only for windows. so i have ...
0
votes
1answer
46 views
jdbc - how to select query in one string
I am trying to fetch the select queries in one string. This is what I want. I tried different ways, but could not solve. This is my code:
ResultSet rs = st.executeQuery("select city_ID from user ...
0
votes
0answers
7 views
Using Oracle Wallet when connecting to a database with Websphere
Has anyone configured a JDBC connection using an Oracle Wallet for a Websphere application? In addition to configuring the wallet files and then including the additional jars to use the thin client ...
0
votes
0answers
17 views
Eclipse Tomcat launch config vmarg -Dfile.encoding and jdbc4 SQL Server
I am running tomcat from Eclipse Helios. When the launch configuration gets created a jvm argument is added -Dfile.encoding=cp1252. I know how to change this value in the configuration setup, I don't ...
1
vote
0answers
30 views
share transaction among several connections
I wonder is it possible to share single database transaction among several physical connections?
This question is caused by curiosity rather than real task. However I encountered a problem which I ...
0
votes
2answers
70 views
JPA: How to INSERT setting PK to MAX(PK) + 1
Scenario: I came across some code that is mixing JPA with JDBC within a transaction. The JDBC is doing an INSERT into a table with basically a blank row, setting the Primary Key to (SELECT MAX(PK) + ...
2
votes
4answers
45 views
datetime in sql changes to just date in my application
I have a column in my table from type datetime, I am retrieve that column to my java application using jdbc.
my problem is that when I stored 2014-05-13 23:49:18.150 in my database, it becomes ...
2
votes
2answers
73 views
Where am I iterating over my ResultSet one time too many? or why is it closed?
I am using anorm to access data on my DB. The DB is written to using another service, which is made in Java, and persist using ebean.
I have the following scala object
import java.sql.Connection
...
0
votes
0answers
64 views
Postgres Java Webservice response issue
I have a webservice that I use to execute postgres queries. The problem is the response is anyType{} with nothing in it. I checked the server and it seems there are no errors in the log files.
...
0
votes
0answers
106 views
Exception in thread “main” org.hibernate.exception.SQLGrammarException: Could not execute JDBC batch update
I'm new to hibernate. This is the exception I'm getting when trying to save Userdto to postgre db.
Exception in thread "main" org.hibernate.exception.SQLGrammarException: Could not execute JDBC batch ...
33
votes
10answers
42k views
Java ResultSet how to check if there are any results
Resultset has no method for hasNext. I want to check if the resultSet has any value
is this the correct way
if (!resultSet.next() ) {
System.out.println("no data");
}
0
votes
2answers
133 views
Calling an Oracle SQL function
I'm new to the connectivity between Java and Oracle and I'm designing a login page.
I'm attempting to call an Oracle function from JAVA. Assume the Oracle function is called FUNCT_PERSON with 2 IN ...
0
votes
1answer
19 views
I'm getting java.lang.ExceptionInInitializerError when I connect to JDBC
I'm running a server using Tomcat 7.0 in Eclipse.
I have a html file to link to a Servlet file, which has a form to input the value.
When I input any value in the html file, it forwards to the servlet ...
1
vote
2answers
50 views
Will this cause memory leak?
Will this code causes a memory leak?
When will the garbage collector be activated? Is it when the timer finishes? or GC will be called even though the timer is still running?
public static ...
0
votes
1answer
123 views
Setting up mapping for a JDBC elasticsearch river
I'm using ES 0.20.6 with the elasticsearch-river-jdbc plugin.
I created a river that works using :
SQL="SELECT ..."
curl -XPUT 'localhost:9200/_river/myindex_river/_meta' -d '{
"type" : "jdbc",
...




