Results 1 to 3 of 3
Thread: file not found
- 02-12-2010, 03:02 PM #1
Member
- Join Date
- Feb 2010
- Location
- london
- Posts
- 2
- Rep Power
- 0
file not found
hello guys
i m a beginner java programmer and have created a small access database...
now i want to connect that database in the java program..
i hv written the code but wen i rum it, it says dat file(database) not found
pls help me...
i m using netbeans6.7.1
the code i wrote is
package practiceptograms;
import java.sql.*;
public class Database {
public static void main(String[] args){
Connection userDB;
Statement myStatement;
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String sourceURL = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=UserDB.mdb;";
userDB = DriverManager.getConnection(sourceURL,"admin","");
myStatement = userDB.createStatement();
}
catch (ClassNotFoundException cnfe) {
// if Class.forName string is wrong
System.out.println(cnfe);
}
catch (SQLException sqle) {
// if connection can’t be made
System.out.println(sqle);
}
}
}
and the output is ====
java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Could not find file '(unknown)'.
i kip ma programs in ma usb and wenevr i opena project from netbeans my files loadsup...
do also tell me if i nid to save the database in a particular kinda folder or smethin lik dt...
thnx
- 02-13-2010, 08:46 AM #2
Senior Member
- Join Date
- Jun 2008
- Posts
- 2,366
- Rep Power
- 7
The "current working directory" is probably not what you think it is. Use the full path to the file.
- 03-04-2010, 11:14 AM #3
Member
- Join Date
- Feb 2010
- Location
- london
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
compilation problem "javac:file not found..."
By Faruq in forum New To JavaReplies: 9Last Post: 02-02-2010, 06:35 PM -
Struts - org.apache.jasper.JasperException: File "/WEB-INF/fmt.tld" not found
By pcassiano in forum Web FrameworksReplies: 2Last Post: 01-05-2010, 05:41 AM -
javac:file not found
By lovearora in forum New To JavaReplies: 3Last Post: 02-09-2009, 03:20 AM -
javac file not found
By teamkeff in forum New To JavaReplies: 6Last Post: 06-23-2008, 10:17 PM -
file not found outside of Netbeans
By annie in forum NetBeansReplies: 0Last Post: 06-21-2008, 10:10 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks