0
votes
5answers
23 views
suggest a link with such concepts implemented - java and mysql
i need to write a program in java that will connect to a mysql database and execute some sql queries and display the result. suggest me a link with similar implementation / discuss …
0
votes
2answers
30 views
ResultSet prematurely closing
I'm compiling a list of Page variables (which has a list of books in it) from a running MYSQL Database. When attempting the second iteration in the while(rs.next()) loop, I receive …
0
votes
2answers
30 views
Using Microsoft Access with Java without the JdbcOdbc default bridge
Hi,
we have to use in our project some legacy Microsoft Access 97/2000 databases with Java.
The problem is: we face many problems with the default JdbcOdbc driver which is availab …
0
votes
2answers
26 views
how to dynamically specify data type while creating the table in MS access using Java
My application is extracting the data from excel sheet. I am storing the value and type of the data from the sheet into the ArrayList. ie., If my excel sheet consists of employee d …
1
vote
3answers
26 views
Info/Warning messages from SQL procedures to Java through JDBC driver
By seeing the ResultSet.getWarnings() method there must be some way to pass warning/info messages from stored procedures to Java layer but found most of the drivers doesn't impleme …
2
votes
2answers
41 views
Lightweight Java database with Maven plugin for starting/stopping?
For unit tests, demonstrations and Hibernate tasks I would like to use a small and simple Java database like Derby / Java DB or HSQLDB, which can be called from within Maven.
So f …
1
vote
0answers
23 views
Is there a way to display PRINT results with SQL server JDBC driver?
If my stored procedure has a print statement inside it:
print 'message'
Is there a way to fetch the output in java program that connects to SQL Server 2008 through JDBC?
Also, …
0
votes
1answer
29 views
Oracle and Jdbc and OraclePreparedStatement#setPlsqlIndexTable and java.util.Date
I´m a little bit frustrated with my Java environment that didn´t allow me to call the method OraclePreparedStatement#setPlsqlIndexTable ... but i think i should write the code befo …
0
votes
2answers
29 views
SQL for retrieving data from all the rows for a particular id in the list and then call a function?
Any performance issues in the code below:
Goal: I want retrieve data from all the rows for a particular id in the list and then call a function
a = list of 2000 ids:
for (int i …
3
votes
3answers
26 views
how can the PL/SQL datatype BINARY_INTEGER materialized as Java types?
What would be the datatype in java equivalent to the PL/SQL datatype BINARY_INTEGER?
2
votes
2answers
45 views
Can/should JPA be used to return values rather than entities?
I'm using JPA for a project and in most cases, want to get entities, but there are a few cases (reporting being one of them, but there are others) where I do not want or need to ge …
0
votes
8answers
180 views
Is JDBC a big memory hog?
I need to access (read in) data repeatedly from a database in my java codes, and therefore adopted JDBC. However, it seems to me that using JDBC takes up a lot of memory. I tried t …
0
votes
8answers
133 views
Using a java method to return multiple values?
I was just wondering whether or not there is a way to make a java method return multiple values.
I am creating an application that uses the jdbc library to work with a database. N …
0
votes
4answers
53 views
Tomcat 6 can’t find mysql driver
Hey,
There is a similar question here but regarding the class path.
http://stackoverflow.com/questions/1585811/classnotfoundexception-com-mysql-jdbc-driver
I've had everything wo …
-3
votes
2answers
44 views
Java-Mysql Connection error
My stack trace:
cbs.ui.OverallReportUI btnGenerateBillActionPerformed
SEVERE: null
java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
a …
