Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #19778
| Path | csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail |
|---|---|
| From | Jeff Higgins <jeff@invalid.invalid> |
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: Simple & easy BUT urgent |
| Date | Sat, 17 Nov 2012 21:48:53 -0500 |
| Organization | A noiseless patient Spider |
| Lines | 15 |
| Message-ID | <k89hqq$cu9$1@dont-email.me> (permalink) |
| References | <50f0e525-5faa-4c6f-97e9-e8449917aaf6@googlegroups.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 7bit |
| Injection-Date | Sun, 18 Nov 2012 02:40:26 +0000 (UTC) |
| Injection-Info | mx04.eternal-september.org; posting-host="6a6a291fa7e9c0bd872c1a9cbe2b371d"; logging-data="13257"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/sJKBW3b77xQ7rRP2Qk1tJbwEhvDhIsxA=" |
| User-Agent | Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20121027 Icedove/3.0.11 |
| In-Reply-To | <50f0e525-5faa-4c6f-97e9-e8449917aaf6@googlegroups.com> |
| Cancel-Lock | sha1:j2+rZhIK/XF5U6rpnBfgTaXsO7U= |
| Xref | csiph.com comp.lang.java.programmer:19778 |
Show key headers only | View raw
On 11/17/2012 06:02 PM, Oussama Romdhane wrote:
> hi everyone, I'm new here so hey there all !
> I just want you guys to give me the necessary line codes to connect an access data base (.mdb) to a java program (I'm working on web services using the soap exchange method)
> Thanks a lot
> OR
import java.sql.*;
class Scratch
{
public static void main(String[] args) {
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection c = DriverManager.getConnection("yourdatabaseurl");
} catch (Exception e) {}
}
}
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Simple & easy BUT urgent Oussama Romdhane <oussama.romdhane.official@gmail.com> - 2012-11-17 15:02 -0800 Re: Simple & easy BUT urgent Jeff Higgins <jeff@invalid.invalid> - 2012-11-17 21:48 -0500 Re: Simple & easy BUT urgent Arne Vajhøj <arne@vajhoej.dk> - 2012-11-17 22:11 -0500
csiph-web