0
votes
1answer
22 views

msSQL jdbc .. I connected to the server but how to connect to use a specific databaseName

Last time I used SQL with Java/Eclipse I had a SQL script linked to the Project. This time, I connected to a different server using jdbc format (not localhost) and it connects correctly. Now I need ...
0
votes
1answer
12 views

JADE and JDBC MySQL connection giving classnotfound exception

protected void setup() { System.out.println("Hello Buyer Agent "+getAID().getName()+" is now ready...."); String url = "jdbc:mysql://localhost/"; String dbName = "testdb"; String ...
0
votes
1answer
42 views

How to create an independent executable jar file [duplicate]

I have written a java program which uses ojdbc14.jar and the program is working fine until it is in eclipse.when I create an executable jar file the ojdbc14.jar is not getting packaged along with it ...
0
votes
1answer
43 views

java.sql.SQLException: Problems with loading native library/missing methods: no ttJdbc1121 in java.library.path

I am getting this error while trying to connect to timesten DB configured in my system: java.sql.SQLException: Problems with loading native library/missing methods: no ttJdbc1121 in java.library.path ...
-1
votes
2answers
47 views

java.sql.SQLException: No suitable driver found for com.timesten.jdbc.TimesTenDriver

I am getting an exception: java.sql.SQLException: No suitable driver found for com.timesten.jdbc.TimesTenDriver while trying to connect to Timesten DB installed in my system. The code is given ...
0
votes
1answer
111 views

JDBC connection does not run with .jar file, but with eclipse project

I'm really looking at a mystery here. I created a Java program in Eclipse and established a JDBC connection. The code is the following: import java.sql.*; public class Login { public static ...
0
votes
1answer
39 views

How to access JDBC calls in Eclipse?

I m developing a plugin in Eclipse using Java , as plugin requirement I need to retrieve database table values in to my java class(Presently I m using SQL Server2008 database). I also added the ...
0
votes
1answer
25 views

how to list all elements of class when class have foreign key of another class in jdbc servlet jsp mysql?

How can i to list a class elements in java when class have another class field? It looks like this: public class Grad { private int grad_id; private **Drzava drzava**; private String naziv; private ...
0
votes
0answers
49 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 ...
0
votes
2answers
145 views

JUnit test fails with java.lang.ClassNotFoundException: com.mysql.jdbc.Driver on Tycho environment

I have a very strange situation. I have a set of eclipse plugin projects which I am using tycho and maven for building them. I used JDBC driver in one of the projects and I have a test plugin to test ...
0
votes
2answers
75 views

Why oracle driver is needed in Eclipse build path?

I am new to JDBC and just made my first program in Eclipse. I am using Oracle 11g XE as database. I have added ojdbc6.jar to my classpath by copying it in the lib folder of the jdk installation. This ...
0
votes
2answers
96 views

unknown database in jdbc

I am using JDBC and new to it. but I keep getting this runtime exception: connecting to psysical database... com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown database ...
2
votes
1answer
73 views

JDBC Driver error for mysql connection

I want to bind mysql data with simple jtextfield. So I've written code as under: public class SimpleForm extends JFrame implements ActionListener { private static final long serialVersionUID = ...
0
votes
0answers
93 views

JDBCRealm login (Glassfish)

I am trying to implement a jdbc login into a eclipse rap application. I am getting following exception: 28.03.2013 16:24:36 com.sun.appserv.security.AppservPasswordLoginModule extractCredentials ...
-1
votes
2answers
600 views

oracle.jdbc.driver.OracleDriver ClassNotFoundException

This is my code for which I am getting error. My classes12.jar has been imported as an external jar. import java.io.IOException; import java.io.PrintWriter; import java.sql.Connection; import ...
0
votes
1answer
142 views

Updating JDBC driver in Eclipse for Derby 10.9

So I am running into an issue right now.... and I need your help. I am trying to get a Derby JDBC driver setup in Eclipse. The Derby driver I downloaded was 10.9, but the Driver that is in Eclipse ...
0
votes
1answer
1k views

com.microsoft.sqlserver.jdbc.SQLServerDriver not found error

I am trying to connect to my SQL Server 2008 database from Java and I'm having the same problem from this thread. String userName = "xxxx"; String password = "xxxx"; String url = ...
4
votes
1answer
387 views

add sqlite DB to executable JAR file

I am using JAVA (with eclipse juno) and try to create an executable JAR file which include sqlite DB file. I've try to get connection to the DB by this line: ...
2
votes
2answers
124 views

MYSQL driver error in GWT

I have been trying to connect my GWT-project to my MySQL database for several hours but im stuck getting a strange error over and over again when loading the drivers. The code for the server is: Note ...
-1
votes
1answer
39 views

mysql driver eclips

Hi this question is asked several times and i searched all of them but everything is in vain. I have a simple jdbc progrm. Running from eclips as java application. put mysql connector in build path. ...
1
vote
3answers
114 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 ...
0
votes
1answer
81 views

NullPointer Exception in MysqlDatasource in tomcat?

I have configured mysqlDatasource in tomcat from this and this. I have followed steps specified there. I have used following lines of code class DataConnection { private static DataSource ...
0
votes
0answers
41 views

How to execute sql statments through a terminal on a glassfish3 server

The idea seems sort of simple to me but my google skills are failing me hard. Can anyone tell me how to execute some sql statments on a jdbc database through the terminal so i dont have to make a java ...
5
votes
1answer
308 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
1answer
96 views

How to export an Eclipse Database (JDBC) project and make it executable on user's pc?

I have created Dental Registry application on eclipse which is connected to Oracle 11 g Database using JDBC. Everything is complete. Now I want to export the project and make it runnable on someone ...
0
votes
1answer
208 views

Java JDBC connection with Eclipse [duplicate]

I am trying to connect with SQLite database , with help from the following link http://code.google.com/p/sqlite-jdbc/ on my Linux PC. Everything works when I tried via command line (as per from that ...
0
votes
0answers
67 views

JDBC Query error

I want to save the list of tables for JDBC to count one by one and I wrote a program for this but problem is when I execute this code it works but it directly goes to exception. When I debug, it says ...
-1
votes
3answers
105 views

DriverManager class

Can I get more technical info about the DriverManager class? I know that it's used to create the connection between java and a database (in my case I'm creating a db using MySQL). But should the ...
1
vote
1answer
65 views

Getting started with JDBC

I was getting started with JDBC and I was using the video mentioned here: http://www.youtube.com/watch?v=kxi-H7359LA Although he is good at the start, he becomes confusing towards the middle. ...
0
votes
1answer
260 views

add JDBC to Dynamic Web Project in eclipse

I am working with JSP and have a problem adding JDBC driver to my current project. I tried to build a path to jdbc library as well as copy and pasting JDBC jar directly into "lib" folder, but nothing ...
1
vote
2answers
137 views

Advantage Database Server .net provider tables not showing

I try to connect to an advantage database server via .net data provider but i cannot browse through the tables, views, stored procedures (VS2010). Although i cannot see the tables, i can query via a ...
2
votes
2answers
877 views

Compilation error - com.mysql.jdbc.Driver cannot be resolved to a variable

I am barely familiar with pre-bundled STS. I am trying out JDBC for MySQL in Eclipse/Spring on Fedora 17 Downloaded the mysql JDBC drivers (mysql-connector-java-5.1.22-bin.jar). Then in the IDE ...
5
votes
1answer
676 views

JDBC connection pool runs out of connections when Context reload=“true” is enabled in Tomcat

I am developing a Java EE web application in Eclipse Juno. I have configured Tomcat to use JDBC connection pool (org.apache.tomcat.jdbc.pool) along with PostgreSQL database. Here are the ...
0
votes
2answers
174 views

Eclipse Oracle Hibernate StringIndexOutOfBoundsException

Getting this odd error during changeover from MySql to Oracle. Everything worked fine until I switched over to an Oracle driver. The autowired class SessionFactory is now failing, but with this odd ...
1
vote
1answer
301 views

JDBC cannot be resolved to a type

I'm trying to use the @JDBC annotation in my class definition as below, but Eclipse says JDBC cannot be resolved to a type. Why is that so? I'm using MySQL as database engine and I've added the ...
-2
votes
4answers
470 views

JDBC connection failed (java.lang.ClassNotFoundException)

I just installed the JDBC driver from here for Sql Server (http://www.microsoft.com/en-us/download/details.aspx?id=11774) and I tested this sample code to test the connection: ...
0
votes
2answers
264 views

getting error when trying to connect to a database using JDBC and Eclipse for Android

I'm trying to connect to a database from my android using JDBC and Eclipse IDE and Java this is the code I wrote package Android_SQL.Package; import java.sql.Connection; import java.sql.Driver; ...
0
votes
1answer
115 views

Doesn't get the output in Java Database Connectivity

I'm working on Java Database Connectivity through Eclipse IDE. I built a database through Ubuntu Terminal, and I need to connect and work with it. However, when I just add ...
0
votes
0answers
104 views

Spring Mybatis Error: Unable to load class [com.mysql.jdbc.ConnectionImpl]

When I try to start server, this error message appears. And whenever I try to save edited code. What is this error? The application operate successfully. I don't know what problem and why this ...
2
votes
1answer
806 views

Oracle JDBC Driver Error on Eclipse

I am trying to execute a query using a stored procedure in Eclipse, but I keep getting this error and I am not sure what I am missing to be able to execute the query. The query works in the actual ...
0
votes
7answers
325 views

username, password etc hardcoded into program - how to pick them up from a file instead?

I have made some code in ECLIPSE. As you can see, the username, password, database URL, SQL Queries are hardcoded into my program. I don't want to change my code and recompile it every time I change ...
2
votes
4answers
3k views

No suitable driver found for jdbc mysql?

I am trying to write a program to connect to a mysql database in eclipse, but I get the error "java.sql.SQLException: No suitable driver found" The java code is: import java.sql.*; public class ...
1
vote
1answer
472 views

Eclipse -> MySQL connection fail

I'm Following this Eclipse->MySQL connection tutorial I created a database called eclipse in MySQL via phpmyadmin (and logged out), I'm supplying correct username and password, yet the connection ...
0
votes
0answers
132 views

Junit test for database query retrieved from a servlet doRun in a separate(independent) class in Eclipse IDE

I have a servlet code written in Eclipse IDE which is intended to run on GlassFish3.1 server using JNDI/JDBC . I want to test only the Database select statement using Junit test. How can I perform the ...
0
votes
1answer
417 views

JDBC connection in Servlets

I'm trying to connect to MySQL using JDBC connection in a Servlet.I'm using Eclipse and added the mysql-connector-java-5.1.20-bin.jar in /WEB_INF/lib folder. Also the same jar is also added into Java ...
0
votes
1answer
129 views

Could not includ java library(.jar) in java based web service or Eclipse

I am new to java based web service. I am able to create web service in java. I am made connection using ODBC connection to MySQL. I want to make connection using JDBC connection. For that I included ...
-1
votes
1answer
604 views

Postgresql JDBC connection via eclipse not happening

I am trying to do a simple connection test to a postgresql database, the code is working well but I am getting the following message: PostgreSQL 9.0 JDBC4 (build 802) Found in: ...
0
votes
2answers
7k views

how to setup JDBC in Eclipse?

I have eclipse and j developer,I am more comfortable with eclipse.I want to know how to setup the JDBC driver in eclipse,I downloaded a driver from oracle.com but it does not appear anywhere when I ...
2
votes
2answers
2k views

Cannot reference jdbc.SQLServerDriver in Eclipse (ClassNotFoundException)

I am trying to use the MSSQL driver for JDBC. I have followed the instructions on how to add an external JAR file to the Eclipse Windows IDE as follow: - Download the installation from here ...
2
votes
3answers
420 views

Is there any method to know how many rows Resultset contains? Java and MSSQL

i want to run a loop (may be a do while) to keep getting reults from MSSQL. i have done the do part of the loop. but can find a method that will stop the loop if no results (rows) are returned from ...

1 2 3