I can't find the computer thread, but:
Wondered where on earth my jdbc driver is (trying to connect java and SQL)
the cloest I get to finding something that seems to make sense on my PC is
C:\...\eclipse\plugins\org.eclipse.birt.report.data.oda.jdbc_2.6.1.v20100909
which is a jar file. The instruction says I should do : -classpath ".;C:\mysql".
for mySQL and jar files for PostgreSQL
but I don't see how to put it into the code..
private String driver = "com.mysql.jdbc.Driver"; // test excample, obviously dont work on my PC
private String url = "jdbc:mysql://"+minsqltjener+minkonto;
private String sqltekst = "select * from "+mintabell;
HELP