I am having a little confusion of what I have studied.
I have studied that drivers are software programs that are required to interact external hardware devices like printers,mouse,mobiles etc.
But when I connect ODBC or JDBC in Java,it requires…
I wrote a code and got this error, then I searched it in Internet and all answers were about adding jdbc literary, I did it 8n several ways according others guidance in Internet but Ithe didn't work.
I want to access a database in my java project though LAN, the oracle database is installed in another machine i want to fetch all the data in my java project & i don't have installed oracle in my machine?
package jdbcconnection;
import java.sql.*;
public class Jdbc2{
public static void main(String[] args) throws Throwable {
//Resgister the driver through
Class.forName("oracle.jdbc.driver.OracleDriver");
…
in the Oracle database I have a table which contains simple attributes such as:
name first name age
Goal: I would like to recover this data in XSD format.
are there SQL functions for that or java libraries that do that?
Thanks in advance