A voir également:
- Probleme avec une requete SQL et java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Jeux java itel 5360 ✓ - Forum Jeux vidéo
- Télécharger jeux java gameloft gratuit - Forum Mobile
1 réponse
j'ai résolu mon probléme et voici la solution (code source ) :
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
url= "jdbc:odbc:avmp; pasword= 123456";
Cnx = DriverManager.getConnection(url);
st = Cnx.createStatement();
req= " select * from DATA_PERSON ";
res = st.executeQuery(req);
notes:
avmp :is topspeed datasource name
DATA_PERSON : is a table from a multi-file table.
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
url= "jdbc:odbc:avmp; pasword= 123456";
Cnx = DriverManager.getConnection(url);
st = Cnx.createStatement();
req= " select * from DATA_PERSON ";
res = st.executeQuery(req);
notes:
avmp :is topspeed datasource name
DATA_PERSON : is a table from a multi-file table.
7 juin 2012 à 19:56
10 juin 2012 à 14:04