Access Microsoft Access Database From Java Using JDBC-ODBC Bridge - Sample Code Accesso database di Microsoft Access da Java utilizzando JDBC-ODBC Bridge - codice di esempio
Previously I had provided the gist of In precedenza avevo previsto il senso del how to access MS Access database from JDBC using JDBC-ODBC bridge come accedere MS Access database da JDBC utilizzando JDBC-ODBC ponte . Today I will elaborate on that and provide you with two sample classes. Oggi ho elaborerà e che a fornire campione con due classi. The first - AccessJDBCUtil.java defines a method which provides you with a connection to the ms access database. La prima - AccessJDBCUtil.java definisce un metodo che vi fornisce una connessione al database MS Access. The second - AccessJDBCTest.java uses the first to execute any given query (DDL & DML supported) on any ms access database and displays the result on console. La seconda - AccessJDBCTest.java usa la prima per l'esecuzione di una determinata query (DDL & LMD supportato) su qualsiasi database MS Access e visualizza il risultato sulla console.
AccessJDBCUtil.java can be used as a utlity class for connecting to Access databases. AccessJDBCUtil.java può essere usato come un utlity classe per la connessione al database di Access. The connection provides read/write access to the database. Fornisce la connessione di lettura / scrittura di accesso alla banca dati. In other words you can execute queries as well as DDL supported by MS Access. In altre parole è possibile eseguire query e DDL supportati da MS Access. It simplifies creation of the strange connection parameters. Semplifica la creazione di strano parametri di connessione.
The rest should be clearly explained by the self-explanatory code included below: Il resto dovrebbe essere chiaramente spiegato dal spiega da sé il codice riportato qui di seguito:
Filed under Elencato sotto Database Banca dati , Headline News Headline News , How To Come , Java Software Software Java , RDBMS , Tech Note Nota tech | |
| |
RSS 2.0 RSS 2,0 | |
Trackback this Article | questo articolo |
Email this Article Invia questo articolo
You may also like to read Si può anche leggere come |




April 7th, 2006 at 8:15 am 7 aprile 2006 a 8:15 am
There is also a type 4 JDBC driver implementation for MS Access by some chinese company. Vi è anche un driver JDBC di tipo 4 per l'attuazione di MS Access alcune società cinese. The website is Il sito web è http://www.hxtt.net .
May 4th, 2006 at 7:26 am 4 maggio 2006 a 7:26 am
That type 4 JDBC driver for MS Access is at Che tipo 4 JDBC driver per MS Access è al now. adesso.
August 28th, 2006 at 11:02 pm Ago 28, 2006 at 11:02 pm
This is the simple code to create database through MS Access.. Questo è il semplice codice per creare attraverso la banca dati MS Access ..
private static final String accessDBURLPrefix = “jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=”; privato statico finale accessDBURLPrefix String = "jdbc: odbc: driver = (Microsoft Access Driver (*. mdb)); DBQ =";
private static final String accessDBURLSuffix = “;DriverID=22;READONLY=false}”; privato statico finale accessDBURLSuffix String = "; DriverID = 22; READONLY = false)";
// Initialize the JdbcOdbc Bridge Driver / / Inizializza la JdbcOdbc Bridge Driver
static { static (
try { try (
Class.forName(”sun.jdbc.odbc.JdbcOdbcDriver”); Class.forName ( "sun.jdbc.odbc.JdbcOdbcDriver");
} catch(ClassNotFoundException e) { ) Catch (ClassNotFoundException e) (
System.err.println(”JdbcOdbc Bridge Driver not found!”); System.err.println ( "JdbcOdbc Ponte di driver non trovato!");
} )
} )
/** Creates a Connection to a Access Database */ / ** Crea una connessione ad un database di Access * /
public static Connection getAccessDBConnection(String filename) throws SQLException { public static Connection getAccessDBConnection (stringa nome file) getta SQLException (
filename = filename.replace(”, ‘/’).trim(); filename = filename.replace ( ",'/'). trim ();
String databaseURL = accessDBURLPrefix + filename + accessDBURLSuffix; DatabaseURL stringa = accessDBURLPrefix + + accessDBURLSuffix nome del file;
return DriverManager.getConnection(databaseURL, “”, “”); return DriverManager.getConnection (databaseURL, "", "");
} )
December 1st, 2006 at 12:51 am 1 ° dicembre 2006 alle 12:51 am
i want a code for my jsp program ,how to Voglio un codice per il mio programma jsp, come
connect msaccess database stored in website?. collegare msaccess banca dati memorizzati nel sito web?. i io
already connected by using dsn name in my local già collegato tramite DSN di nome nel mio locale
system. sistema. what i need is how to connect msaccess che cosa ho bisogno è come collegare msaccess
datbase stored in website. datbase memorizzati nel sito web.
my code il mio codice
lass.forName(”sun.jdbc.odbc.JdbcOdbcDriver”); lass.forName ( "sun.jdbc.odbc.JdbcOdbcDriver");
String filename = “c:database/demo1.mdb”; Stringa nome file = "c: database/demo1.mdb";
String database = “jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=”; Banca dati stringa = "jdbc: odbc: driver = (Microsoft Access Driver (*. mdb)); DBQ =";
database+= filename.trim() + “;DriverID=22;READONLY=true}”; banca dati filename.trim + = () + "; DriverID = 22; READONLY = true)";
December 25th, 2006 at 4:22 am Dicembre 25, 2006 at 4:22 am
if we enter the text in a text box how to store it in the database.using jsp please send the coding. se si digita il testo in una casella di testo come memorizzare nella database.using jsp si prega di inviare la codifica.
March 16th, 2007 at 12:59 am Marzo 16, 2007 at 12:59 am
i hav a problem to connect with ms access database i write following code to access the author table frm MS access database …but it can’t working anybody tell me wht’s the probs…. i hav un problema per connettersi a un database MS Access scrivo seguente codice per accedere alla tabella frm autore MS Access banca dati… ma non è in grado di lavoro qualcuno mi dica WHT il probs….
i run this code via tomcat server..it’s print first hello… further nothing eseguire questo codice attraverso il server Tomcat .. è stampa prima ciao… niente di più
import java.io.*; importazione java.io. *;
import java.sql.*; importazione java.sql .*;
import javax.servlet.*; importazione javax.servlet .*;
import javax.servlet.http.*; importazione javax.servlet.http .*;
public class DataBase extends HttpServlet public class DataBase estende HttpServlet
{ (
public void doGet(HttpServletRequest req,HttpServletResponse res) throws IOException, ServletException public void doGet (HttpServletRequest req, HttpServletResponse res) lancia IOException, ServletException
{ (
doPost(req,res); doPost (req, res);
} )
public void doPost(HttpServletRequest req,HttpServletResponse res) throws IOException, ServletException public void doPost (HttpServletRequest req, HttpServletResponse res) lancia IOException, ServletException
{ (
try provare
{ (
PrintWriter pw=res.getWriter(); PrintWriter pw = res.getWriter ();
pw.println(”hello”); pw.println ( "ciao");
String str=”SELECT * FROM author”; String str = "SELECT * FROM autore";
try provare
{ (
Class.forName(”sun.jdbc.odbc.JdbcOdbcDriver”); Class.forName ( "sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection(”jdbc:odbc:prakash”,”",”"); Connessione con = DriverManager.getConnection ( "jdbc: odbc: prakash ","","");
Statement stmt=con.createStatement(); Dichiarazione stmt = con.createStatement ();
ResultSet rs=stmt.executeQuery(str); ResultSet rs = stmt.executeQuery (str);
pw.println(”hello”); pw.println ( "ciao");
while(rs.next()) while (rs.next ())
{ (
String id= rs.getString(”au_id”); Stringa id = rs.getString ( "au_id");
pw.println(”id”+id); pw.println ( "id" + id);
String fname= rs.getString(”au_fname”); Stringa fname = rs.getString ( "au_fname");
pw.println(”fname”+fname); pw.println ( "fname" + fname);
String lname= rs.getString(”au_lname”); Stringa lname = rs.getString ( "au_lname");
pw.println(”lname”+lname); pw.println ( "lname" + lname);
} )
} )
catch(SQLException e) catch (SQLException e)
{ (
System.err.println(”SQL Exception found!”); System.err.println ( "Eccezione SQL trovato!");
} )
catch(ClassNotFoundException e) catch (ClassNotFoundException e)
{ (
System.err.println(”JdbcOdbc Bridge Driver not found!”); System.err.println ( "JdbcOdbc Ponte di driver non trovato!");
} )
finally finalmente
{ (
System.err.println(”hello finally inner”); System.err.println ( "ciao finalmente interiore");
} )
} )
catch(Exception ex) catch (Exception ex)
{ (
System.out.println(”error”+ex); System.out.println ( "errore" + ex);
} )
finally finalmente
{ (
System.err.println(”hello finally outer”); System.err.println ( "ciao finalmente esterno");
} )
System.out.println(”yes OUTER”); System.out.println ( "sì ESTERNO");
} )
} )
March 28th, 2007 at 2:48 am 28 marzo 2007 a 2:48 am
I have a doubt sir.I am developing a tool which uses java with Ms access .I am updating my ms access database using java. Ho un dubbio sir.I sono in via di sviluppo di uno strumento che utilizza Java con MS Access. Sto aggiornando il mio MS Access database utilizzando la tecnologia Java. I need to spread Ho bisogno di diffondere
the data on the ms access database to Ms Excel sheet using java(via jdbc connection). i dati relativi al database MS Access MS Excel per foglio utilizzando Java (tramite connessione JDBC).
April 19th, 2007 at 12:32 pm 19 aprile 2007 a 12:32 pm
This is a very nice way to understand the programs Questo è un bel modo per comprendere i programmi
i like this site i piace questo sito
May 9th, 2007 at 12:11 pm 9 maggio 2007 a 12:11 pm
I like your code, thank you for sharing this with everyone. Mi piace il tuo codice, la ringrazio per questa condivisione con tutti. It really helped me do what I needed to do, which was get some data from a Access Database into my java program. E 'veramente mi ha aiutato fare ciò che dovevo fare, che è stato ottenere alcuni dati da un database di Access nel mio programma Java.
May 27th, 2007 at 2:56 am 27 maggio 2007 alle 2:56 am
i am looking for a code to display images on desktop pls help me Sto cercando un codice per la visualizzazione delle immagini sul desktop pls help me
June 7th, 2007 at 12:21 am 7 giugno 2007 alle 12:21 am
im getting an exception “no data found” nel mese di ottenere una deroga "dati non trovato"
what might be the problem? Quale potrebbe essere il problema?
June 15th, 2007 at 4:55 pm 15 giugno 2007 alle 4:55 pm
i can’t connect my java gui with msaccess database.plez send me proper working code for jdbc. Non riesco a collegarmi il mio java gui con msaccess database.plez inviarmi corretto funzionamento del codice per JDBC.
July 10th, 2007 at 3:13 am Luglio 10, 2007 at 3:13 am
want simple ms access database connection java program desidera MS Access semplice connessione al database programma Java
July 11th, 2007 at 11:35 am 11 luglio 2007 alle 11:35
I would like to read an ms Excel document and use it to initialiaza a database I created with Access… any ideas on how to do this? Vorrei leggere un documento di MS Excel e utilizzarlo per initialiaza un database creato con Access… tutte le idee su come farlo?
July 19th, 2007 at 11:16 pm 19 luglio 2007 a 11:16 pm
Hai sir.. Hai Sir .. I want to how to connect ms access database through the JSP Programming! Voglio come collegare database MS Access attraverso la programmazione JSP!
August 7th, 2007 at 12:09 am Agosto 7th, 2007 at 12:09 am
hi sir, i want a simple application to access from ms access through jsp hi signore, voglio una semplice domanda di accesso da MS Access attraverso jsp
August 13th, 2007 at 8:03 pm 13 agosto 2007 alle 8:03 pm
Hi, Salve,
August 16th, 2007 at 1:00 am 16 Agosto del 2007 a 1:00 am
i want to open ms word document by using java code, is there any code regarding this.If there is any code please send me, its urgent………… i desidera aprire documento MS Word utilizzando codice Java, non vi è alcun codice in materia di this.If non vi è alcun codice vi prego di inviarmi, la sua urgenza…………
August 18th, 2007 at 10:05 am 18 agosto 2007 alle 10:05 am
please help me! please help me!
this is my code snippet, i have created a dsn called MyDSN the code below gives an SQL Exception where the connection object is created. questo è il mio frammento di codice, ho creato un DSN chiamato MyDSN il codice qui sotto dà un SQL Eccezione in cui la connessione è oggetto creato.
error says the default driver not specified can u please tell me what is the cause for this: errore dice il driver predefinito non specificato può e mi dica qual è il motivo di questo:
Class.forName(”sun.jdbc.odbc.JdbcOdbcDriver”); Class.forName ( "sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection(”jdbc:odbc:MyDSN”,”sa”,”"); Connessione con = DriverManager.getConnection ( "jdbc: odbc: MyDSN", "sa ","");
thank you grazie
August 18th, 2007 at 10:37 am 18 agosto 2007 alle 10:37 am
i want to know how to open an ms access report from my java application pls…… desidero sapere per aprire un MS Access relazione dal mio Java Application pls……
August 21st, 2007 at 5:49 am 21 agosto 2007 alle 5:49 am
I have written a java programe and gave the required Connection to MSAccess through ODBC .when compiling it is ok but running the program Windows giving an error stating java.sql.exception=No suitable Driver. Ho scritto un programma java e ha dato alle richieste di connessione a MSAccess tramite ODBC. Quando si compila è ok, ma il programma in esecuzione Windows dando un errore affermando java.sql.exception = Nessun driver adatto.
What should i do? Che cosa devo fare?
And I like to know how to connect MSAcess to java programe in Control panel,not in java programe since i have already know how to connect ODBC in java programe.I want to know how to connect MS Access in ODBC drive through CONTROLPANEL.That is going to ControlPanel and clicking on ODBC and then DSN dialog box will open and next giving the DSN Name and then what? E mi piacerebbe sapere come collegare MSAcess a java programma nel Pannello di controllo, non in Java, dal momento che i programmi sono già sapere come collegare ODBC in Java programe.I vogliono sapere come collegare in MS Access tramite ODBC unità è CONTROLPANEL.That andando a controllo e facendo clic su ODBC e quindi DSN finestra di dialogo si aprirà il prossimo e dare il DSN Nome e poi?
October 13th, 2007 at 12:19 am 13 ottobre 2007 alle 12:19
Please tell where can i find Beans Development Kit software(BDK) of any version.Tell corectly Web-site. Informi Dove posso trovare Fagioli Kit di sviluppo software (BDK) di qualsiasi version.Tell corectly sito web.
November 13th, 2007 at 1:35 am 13 novembre 2007 alle 1:35 am
sir,how to export and import data between MS Access and Excell sheet using the java script.will you please send me the code. signore, come esportare e importare dati tra MS Access ed Excel utilizzando il foglio java script.will prego di inviarmi il codice.
November 13th, 2007 at 12:02 pm 13 novembre 2007 alle 12:02 pm
Why would you want to import using Javascript? Perché si desidera importare utilizzando Javascript?
Use Java / PHP or any decent server side language. Utilizzare Java / PHP o qualsiasi dignitoso lato server lingua.
November 19th, 2007 at 11:37 pm 19 Novembre 2007 alle 11:37 pm
Sir I have placed a TextBox in the Frame Signore, mi hanno posto un testo nel frame
I can’t able to insert the value i got from that box to the Access table or other(dbms).tell me the way or codings to insert the values to the backend(Access or sqlserver) Non posso in grado di inserire il valore che ho ricevuto da quella casella per la tabella di Access o di altri (DBMS). Dirmi il modo o codici per inserire i valori per il backend (Access o SQLServer)
November 22nd, 2007 at 6:58 am 22 novembre 2007 alle 6:58 am
I have an application sever and a database server. Ho una domanda severa e un database server.
from application server, i need to write java code to connect to the MS Access database in database server. da server di applicazioni, ho bisogno di scrivere codice Java per la connessione a MS Access database server database. help me with the code please. aiutarmi con il codice per favore.
November 28th, 2007 at 4:20 am 28 novembre 2007 alle 4:20 am
i want toconnect MSAccess with JSP.And check the username and password which i give matches with those in MSAccess Table desidero toconnect MSAccess con JSP.And verificare il nome utente e la password che dare i fiammiferi a quelle in tabella MSAccess
December 7th, 2007 at 8:24 pm 7 dicembre 2007 a 8:24 pm
sir, how to open a report in microsoft access using java codes??help plz signore, come aprire una relazione in Microsoft Access utilizzando codici java? aiutare plz
January 14th, 2008 at 4:12 am 14 gennaio 2008, 4:12 am
how to create MS Access database, table using java code. come creare database MS Access, tabella utilizzando codice Java. And how to insert some data got from user into the access table.help please. E come inserire alcuni dati ottenuto da utente l'accesso in table.help per favore. thanks in advance grazie in anticipo
January 14th, 2008 at 4:19 am 14 gennaio 2008, 4:19 am
how to create MS access database, table using java and how to insert data got from the user into the access table.thanks in advance come creare database MS Access, tabella utilizzando Java e come inserire i dati ottenuto, da parte degli utenti l'accesso in table.thanks in anticipo
January 30th, 2008 at 9:47 pm 30 gennaio 2008, 9:47 pm
after establishing the connection between java and msaccess i have created one table through java program after running this program it is giving messge as table is created but it is not there in my database…… Dopo aver stabilito il collegamento tra Java e msaccess ho creato una tabella attraverso programma Java dopo aver eseguito questo programma che sta dando messge come tabella viene creata, ma non c'è nella mia banca dati……
where it will be stored? in cui verranno archiviati?
February 7th, 2008 at 10:27 am 7 febbraio 2008 a 10:27
hi,i need to connect to database in java program, ciao, ho bisogno di connettersi al database in programma Java,
if created a MS Access Database ,where should i save it and how should i access it from my program? se ha creato un database MS Access, Dove devo salvare e come deve accedere dal mio programma?
February 13th, 2008 at 7:26 am 13 febbraio 2008, 7:26 am
i have created a database using MS ACCESS and i dont know how to access it through using Java program, because i want to get the items i stored in my database so that i can retrieve it out to my Java program..thnx Ho creato un database con MS Access e i dont know-how per l'accesso tramite l'utilizzo programma Java, perché voglio ottenere i punti per i memorizzate nel mio database in modo che possa recuperare fuori al mio programma Java .. thnx
February 26th, 2008 at 2:50 am 26 febbraio 2008, 2:50 am
i would like to know how to connect MS Access database from Applets & application & I need the sample program for it. Mi piacerebbe sapere come collegare MS Access database da Applets & domanda & ho bisogno il programma di esempio per questo.
kindly help me out. gentilmente mi aiuti.
February 26th, 2008 at 10:48 pm 26 febbraio 2008 a 10:48 pm
I have provided the sample code in the post above. Ho fornito il codice di esempio nel post sopra. Download and use it. Scaricare e utilizzare.
February 29th, 2008 at 8:52 am Febbraio 29, 2008 8:52 am
hi, Salve,
im doing a project in jsp and servlets.im using jsp for designing the UI and servlets for business logic.i want to store the datas dat i get from the regsiter page.plz tell me whether i should connect the servlet or the jsp with the database and also plz tell me the steps for MSAccess database conectivity wid the correct code. nel mese di fare un progetto in jsp e servlets.im utilizzando jsp per la progettazione di interfaccia utente e la servlet per le imprese logic.i desidera memorizzare i dati Banca dati che ricevo da il regsiter page.plz dirmi se i dovrebbe collegare la servlet o la jsp con il database e anche plz dirmi la procedura per la MSAccess banca dati conectivity wid il codice corretto.
March 9th, 2008 at 6:31 am 9 marzo 2008, 6:31 am
how to accesss database in jsp using tomcat serverand msaccess come banca dati d'accesso utilizzando jsp tomcat serverand msaccess
March 9th, 2008 at 6:32 am 9 marzo 2008, 6:32 am
how to access database using tamcat and msaccess in jsp come accedere a database utilizzando tamcat e msaccess in jsp
March 12th, 2008 at 8:26 am 12 marzo 2008, 8:26 am
hai friend this is suresh.i want the program in java.how to connect the Access database from javaprogram.please send the program code to my mail id.and what is the Key word to access the Data base. hai questo amico è suresh.i desidera che il programma in java.how per collegare il database di Access da javaprogram.please inviare il codice del programma alla mia mail id.and qual è la parola chiave per accedere ai dati di base.
Thanking You…. Ringraziandovi….
suresh.. Suresh ..
March 14th, 2008 at 9:36 am 14 marzo 2008, 9:36 am
how to sore d excel data in access database or SQL.. come d mal di dati di Excel nel database di Access o SQL ..
plz help.. plz help ..
thank… ringraziare…
March 27th, 2008 at 10:17 pm 27 marzo 2008, 10:17 pm
Hi, Salve,
Iam new to jsp&sevelets and i have to connect jsp with access db…. Ora di nuovo da jsp & sevelets e devo collegare jsp con accesso db…. i have created DSN name as Test and i used this code …. Ho creato DSN di nome come prova e ho usato questo codice….
————————————————- -----------------
import java.sql.Connection;java.sql.Connection importazione;import java.sql.DriverManager;java.sql.DriverManager importazione;import java.sql.SQLException;java.sql.SQLException importazione;public class JDBCConnection { classe pubblica JDBCConnection (
public static Connection getConn() public static Connection getConn ()
{ (
Connection con = null; Connessione con = null;
//Statement st = null; / / Dichiarazione st = null;
try provare
{ (
Class.forName(\”sun.jdbc.odbc.JdbcOdbcDriver\”);//registring the driver Class.forName (\ "sun.jdbc.odbc.JdbcOdbcDriver \ ");// registring il conducente
//con = DriverManager.getConnection(\”jdbc:odbc:est\”,\”\”,\”\”); / / con = DriverManager.getConnection ( "jdbc: odbc: è \", \ "\", \ "\");
con = DriverManager.getConnection(\”jdbc:odbc:Test\”,\”\”,\”\”); con = DriverManager.getConnection ( "jdbc: odbc: Test \", \ "\", \ "\");
System.out.println(\”Connection——>\” + con); System.out.println (\ "Connessione -> \" + con);
return con; con ritorno;
} )
catch (SQLException se) catch (SQLException SE)
{ (
System.out.println(se.toString()); System.out.println (se.toString ());
} )
catch (Exception e) catch (Exception e)
{ (
System.out.println(e); System.out.println (e);
} )
return (null); return (null);
} )
public static void main(String[] args) { public static void main (String [] args) (
JDBCConnection.getConn(); JDBCConnection.getConn ();
} )
} )
———————————————— ----------------
but iam getting an error : ma ora ricevo un errore:
java.sql.SQLException: No data found java.sql.SQLException: Nessun dato trovato
kindly help me with code and step by step process to connect access to jsp.. gentilmente mi aiuti con il codice e, passo dopo passo, processo per collegare l'accesso ai jsp ..
March 28th, 2008 at 9:08 pm 28 marzo, 2008 9:08 pm
Please post your questions on Vi preghiamo di inviare le vostre domande su our forum i nostri forum as it will allow others to help you easily. che sarà di permettere ad altri di aiutare facilmente.
April 27th, 2008 at 2:45 pm 27 aprile 2008, 2:45 pm
i am doing a j2ee project in online business service engine..i was using oracle 9i database but sometimes the Ora90HTTPserver service stops automatically and then does not starts. Sto facendo J2EE progetto on-line di servizi alle imprese motore .. i was Uso di Oracle 9i banca dati ma a volte il servizio Ora90HTTPserver si arresta automaticamente e quindi non si avvia. i would like to know why this happens..i am not able to execute my project.then i converted my datbase to ms-access and i linked it wid java with the code Mi piacerebbe sapere il perché di questa .. io non sono in grado di eseguire i miei project.then convertito il mio datbase di MS-Access e che i collegati wid Java con il codice
and also connected through control panel but i am still not able to execute my project..can any1 tell me how to connect ms-access to my program properly or y the ora90http server service in services.msc stops and does not starts..it show the error”the service stopped automatically” e anche collegato tramite pannello di controllo ma non sono ancora in grado di eseguire il mio progetto .. any1 può dirmi come collegare ms-l'accesso al mio programma correttamente o y la ora90http server di servizio in services.msc si ferma e non si avvia .. mostra il messaggio di errore "il servizio interrotto automaticamente"
May 16th, 2008 at 10:07 pm 16 maggio 2008, 10:07 pm
hi everyone can you give me a sample code of admin.where belong the username anda password ciao a tutti potete darmi un esempio di codice di admin.where appartengono il nome utente password anda
May 28th, 2008 at 10:30 pm 28 maggio 2008, 10:30 pm
hi Salve
iam narender i want to learn java basics with sutaible examples which book i refer i mean to easy to learn ora narender Voglio imparare java basi con esempi che sutaible libro mi riferisco intendo facile da imparare
May 29th, 2008 at 5:05 am 29 maggio 2008, 5:05 am
You should read the Java Tutorial which is available for free from Sun. Si dovrebbe leggere il Tutorial di Java, che è disponibile gratuitamente da dom.
May 31st, 2008 at 1:04 am 31 maggio 2008, 1:04 am
this is site very useful my project development. questo sito è molto utile il mio progetto di sviluppo.
Thank you sir.. La ringrazio Sir ..
Regards Saluti
Jeyaram.A
May 31st, 2008 at 1:21 am 31 maggio 2008, 1:21 am
Hi Guys I am JEYARAM. Hi Guys sono JEYARAM. This is sample coding an using JDBC connection to the DataBase. Questo è uno campione di codifica usando JDBC connessione al database.
===================================================== ================================================== ===
Register Page Registrati Page
First Name: Nome:
Last Name : Cognome:
Age : Età:
city : Località:
===================================================== ================================================== ===
Regards Saluti
JEAYRAM .A JEAYRAM. A
9894174502.
May 31st, 2008 at 1:25 am 31 maggio 2008, 1:25 am
Register Page Registrati Page
First Name: Nome:
Last Name : Cognome:
Age : Età:
city : Località: