Ask a Question related to ASP Database, Design and Development.
-
wills #1
asp and oracle 9i database
I'm trying to access an Oracle 9i database table and am
having a difficult time finding how resolve the error. My
error is as follows:
---
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create
object: 'OracleInProcServer.XOraSession'
/access_retrieve_data.asp, line 14
---
My code is:
---
<%@ Language=VBScript %>
<% option explicit %>
<%
Dim OraSession, OraDatabase, OraDynaset
Set OraSession = CreateObject
("OracleInProcServer.XOraSession")
Set OraDatabase = OraSession.OpenDatabase
("", "username/password", Cint(0))
'execute SQL
Set OraDynaset = OraDatabase.DbCreateDynaset( "Select *
from Admin", cint(0))
Do While (OraDynaset.EOF = FALSE)
Response.write (OraDynaset.Fields("ID"))
Response.write (OraDynaset.Fields("FName"))
Response.write (OraDynaset.Fields("LName"))
Response.write (OraDynaset.Fields("Phone"))
Response.write (OraDynaset.Fields("Email"))
OraDynaset.MoveNext
Loop
'remove OraSession
Set OraSession = Nothing
%>
---
Any ideas?
Thanks,
Wills
wills Guest
-
Dump Database / Porting Database to Oracle
Hi, I do not know much about informix. I have no running instance here, but its my job to transfer data from informix to oracle. - Is there a... -
What is the name of the next generaltion Oracle database?
Bravo! Nice to see Oracle people have some humor. Try PGSQL http://www.postgresql.org. You may run a 1000 instances and won't have to pay anyone a... -
Oracle asking for pwd on strating up of database.
This bit me once when I thought that the export was of just one user and it was in fact a full export of the system. I ended up with my sys and... -
E-mail to Database (Oracle 8i)
This actually crosses a few core technologies, but I'd be interested to hear if you have ever implemented a system in which incoming e-mails to a... -
HELP: Connecting IIS to an Oracle Database
Did you ever get this resolved? I am having the same problem... Windows 2000 Advanced Server. Oracle client 9.2 "Microsoft OLE DB Provider... -
Atrax #2
Re: asp and oracle 9i database
umm.... do you have the up-to-date COM objects installed on the server?
________________________________________
Atrax. MVP, IIS
[url]http://rtfm.atrax.co.uk/[/url]
newsflash : Atrax.Richedit 1.0 now released.
[url]http://rtfm.atrax.co.uk/infinitemonkeys/components/Atrax.RichEdit/[/url]
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Atrax Guest



Reply With Quote

