Java database connectivity

Front End : JavaBack End : MS Access 2003Java Application ---> JDBC API ---> JDBC -->ODBC -->Database (MS Access)First u need to setup ODBC Connection to ur MS Access DatabaseThen u need to connect ur JDBC to ODBC using JdbcOdbcDriver provided with JavaSetup ODBC : first thing is go to control Panel > Administrative tools > Data Sources ODBCAdd the database u want from List of databasesCLick on System DSN TabAdd Driver For Respected Database here in out case MS Access !Click on...

Database Drivers

Hi , When we think of Database Connectivity we come across something terms something as , ODBC , Database Drivers etc...soo wht are they?? why we use it?? how to choose . . .all questions comes in mind..! i wil try to explain those things in short ! belive me its not for PROFESSIONALS in these fields..jst for beginners..or newbies...soo if ur a professional pls dnt BLAME ME ! n dont thik its KIDY THINGS . . .newbie struggles to learn tat..! First thing : Consider you have MS Access Database You...

Java Programming Useful Links

1) Java Set ActionCommandwww.hwcdsb.ca/stjeande/cchiarelli/JavaTutorial/Notes/chap59/ch59_12.html...

Capture Snapshot of PC with Current Resolution . . .(Java Programming)

import java.awt.*;//get current resolution . . . Toolkit tk = Toolkit.getDefaultToolkit(); Dimension dm = tk.getScreenSize(); System.out.println(dm);//Capture snapshot . . .Robot robot = new Robot(); // Capture the screen shot of the area of the screen defined by the rectangle BufferedImage bi=robot.createScreenCapture(new Rectangle(dm.width,dm.height)); ImageIO.write(bi, "jpg", new File("D:/imageTest.jpg"...