dbTalk Databases Forums  

DSN Less Connection To Oracle Database

comp.databases.oracle.misc comp.databases.oracle.misc


Discuss DSN Less Connection To Oracle Database in the comp.databases.oracle.misc forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Louis
 
Posts: n/a

Default DSN Less Connection To Oracle Database - 09-12-2008 , 12:36 AM






I am looking for help in understanding the software/configuration
architecture to connect to an oracle database from a html/javascript web
page.

I have access to an Oracle database, and I want to retrieve data from it
from a web page on a Windows IIS web server. I think the web server
has an ODBC driver for Oracle. That's about all I know for now.

What I want to do is to code the html page and use javascript to call
some kind of server-side script to query the Oracle database.

What do I need to make this happen? I have a sample of an ASP script,
but so far I can't make it work. What do I need?

- Do I really need an Oracle client installed on the web server?
- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?

Your help is appreciated.
Thank you.

Reply With Quote
  #2  
Old   
sybrandb@hccnet.nl
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-12-2008 , 03:07 AM






On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

Quote:
- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

Quote:
- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

--
Sybrand Bakker
Senior Oracle DBA


Reply With Quote
  #3  
Old   
sybrandb@hccnet.nl
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-12-2008 , 03:07 AM



On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

Quote:
- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

Quote:
- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

--
Sybrand Bakker
Senior Oracle DBA


Reply With Quote
  #4  
Old   
sybrandb@hccnet.nl
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-12-2008 , 03:07 AM



On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

Quote:
- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

Quote:
- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

--
Sybrand Bakker
Senior Oracle DBA


Reply With Quote
  #5  
Old   
sybrandb@hccnet.nl
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-12-2008 , 03:07 AM



On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

Quote:
- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

Quote:
- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

--
Sybrand Bakker
Senior Oracle DBA


Reply With Quote
  #6  
Old   
Louis
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-15-2008 , 07:53 PM



sybrandb (AT) hccnet (DOT) nl wrote:
Quote:
On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

Thanks for the response. Although I admit that I am still fuzzy on what
I need to solve my problem cause I am not familiar with all the driver
names etc. It will take me some time to look up what they do.

Thank you.


Reply With Quote
  #7  
Old   
Louis
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-15-2008 , 07:53 PM



sybrandb (AT) hccnet (DOT) nl wrote:
Quote:
On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

Thanks for the response. Although I admit that I am still fuzzy on what
I need to solve my problem cause I am not familiar with all the driver
names etc. It will take me some time to look up what they do.

Thank you.


Reply With Quote
  #8  
Old   
Louis
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-15-2008 , 07:53 PM



sybrandb (AT) hccnet (DOT) nl wrote:
Quote:
On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

Thanks for the response. Although I admit that I am still fuzzy on what
I need to solve my problem cause I am not familiar with all the driver
names etc. It will take me some time to look up what they do.

Thank you.


Reply With Quote
  #9  
Old   
Louis
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-15-2008 , 07:53 PM



sybrandb (AT) hccnet (DOT) nl wrote:
Quote:
On Fri, 12 Sep 2008 05:36:41 GMT, Louis <t051315 (AT) hotmail (DOT) com> wrote:

- Do I really need an Oracle client installed on the web server
Depends on which interface you plan to use, and which capabilities you
need.
The jdbc thin driver doesn't need a client. All other options, like
the full jdbc driver, and odbc or ole or .net do.
Which client (instant or full) would depend on Oracle version, which
you can't be bothered to mention

- Is "Microsoft ODBC for Oracle" enough for ASP to talk to the Oracle
database?
I would strongly recommend *against* using the Microsoft driver. It
has numerous compatibility issues (ie sql which does work using the
Oracle ODBC driver doesn't work using the Microsoft one), and
Microsoft never ever implemented any Oracle feature beyond 7.3
If you only need to access Oracle I would go OLE or ODP
Apart from that, the ODBC driver definitily needs the Oracle client,
whether you use Microsofts driver or Oracles.

Thanks for the response. Although I admit that I am still fuzzy on what
I need to solve my problem cause I am not familiar with all the driver
names etc. It will take me some time to look up what they do.

Thank you.


Reply With Quote
  #10  
Old   
gazzag
 
Posts: n/a

Default Re: DSN Less Connection To Oracle Database - 09-16-2008 , 04:56 AM



On 16 Sep, 01:53, Louis <t051... (AT) hotmail (DOT) com> wrote:
Quote:
Thanks for the response. Although I admit that I am still fuzzy on what
I need to solve my problem cause I am not familiar with all the driver
names etc. It will take me some time to look up what they do.

Thank you.
This may be off some help: http://download.oracle.com/docs/cd/B...o.htm#sthref18

Cheers,

-g


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.