The jdbc tag has no wiki summary.
0
votes
0answers
8 views
jdbc error java class trying to connect to linux mysql server [migrated]
My error!
DBConnection2.java:38: unreported exception java.lang.InstantiationException; must be caught or declared to be thrown
Class.forName("com.mysql.jdbc.Driver").newInstance();
problem: ...
1
vote
0answers
15 views
How to manipulate JDBC connection with Service layer [migrated]
I have a Spring MVC App, it works fine, but now I inserted the service pattern and I don't know what is the the best way to treat my JDBC Connection inside my DAO.
I have an interceptor which creates ...
1
vote
2answers
143 views
I am new to programming and I am interested in jdbc - Tips and Advice needed [closed]
I am currently acquiring my associates degree in software engineering. I have been told in order to be successful in a computer science field you have to specialized in something. After researching ...
1
vote
0answers
56 views
Migrating from JDBC to play framework
I recently discovered the Play Framework, and it really interested me the way it directly maps the java objects with the database tables. Previously, I have done this manually with JDBC in my ...
4
votes
2answers
375 views
Why shouldn't you use JDBC in Java applets?
I've heard people saying usage of JDBC (Java Database Connectivity) isn't recommended in Java applets. All I they say is: 'because of the security reasons'. What 'security reasons' do they mean? What ...
2
votes
2answers
186 views
Migrating from jdbc to MyBatis — advice needed
I am working on a Java application (an ERP) that has grown pretty large, and will continue to grow for the next couple of years. We have been using Spring-JDBC for our DAO layer. But the amount of ...
4
votes
2answers
299 views
Manage query strings in JDBC methods
I am trying to find out which is the best practice when organising the PreparedStatement strings in a application which uses JDBC to connect to the database.
Usually this is the way I retrieve the ...
2
votes
1answer
762 views
Size of database a factor for Hibernate vs JDBC?
Do you know if the size of the database (number of tables used) is a factor when choosing between Hibernate and JDBC? Why or why not?
3
votes
2answers
195 views
Server and MySQL safety for Java / JDBC applications?
I have an external java application which use JDBC as to reach an MySQL database.
This will be used by many people and is going to store all the people's data on the same server / MySQL.
As I bet ...