Can someone give me a connection string to connect to an Oracle server on another server?
I’m coding in classic ASP on a windows server… I can’t setup ODBC so I’d like a dsn-less connection.
Act as if, the user ID (schema) in new_apps is “username”, with the password “password”. The TCP/IP address for new_apps is 114.91.65.12 on port 1521.
Can you help?
Related posts:
- Sometimes I can’t connect to server on cod waw, why? Neta asked: on a wii, cant connect and haven’t...
- Sometimes I can’t connect to CoD WaW server multiplayer. Why? Ed J asked: Sometimes it says that it was...
- COD 4 Master server connect? Dan 94 asked: Yesterday I changed my modem due...
- Why do i get this message on cod 5 when i try connect 2 a server,” No or bad challenge for address ” ? ? tewodrosbekele2005 asked: i bought the genuine version. its when...
- What is the dedicated server in regards to Team Fortress Classic? When I log into Steam, can I choose between all...
Related posts brought to you by Yet Another Related Posts Plugin.
Related Content
Related Search
connectionstring recommended values vb 2005 sqlconnection vba ado
Connection Strings, ASP Connection String To MySQL, Connection Strings, SQL Server, Oracle, MySQL If you are using the Oracle OLEDB Provider 0 is installed on the remote server, and ( ....... )
15 seconds asporacle connectivity using oo4o
create practical Oracle database connectivity from ASP using of a database connection. The server by-Step Guide To Using MySQL with ASP.NET - Part 1: Back in the days of classic ( ....... )
connection strings database connectionstrings
// -- Standard Connection : using Oracle.DataAccess.Client; // ODBC -- MyODBC Driver -- remote database using System.Data.Odbc "Server= ServerName;" + "Option=16834;" + ( ....... )
using myodbc to access your mysql database via asp
Using MyODBC to Connect to a Remote Access and SQL Server, Oracle, dBase to a MySQL database in ASP. We will look at two different ways to connect to a MySQL database using ( ....... )
how do i increase timeout values?
Classic ASP 1.0 COM contents of a remote web page? How do I read the event log from ASP? 500 Internal Server error for all ASP errors? Why do I get an 'overflow' error using ( ....... )
ado connection strings codeproject
To connect to SQL Server running on a remote computer Active Server Pages (ASP) page, Msolap.asp, enables the connection through Connecting Using HTTP. OLE DB Provider for Oracle ( ....... )
connect to remote sql server 2000 using servlets
Hi guys, Please help me ? I want to make connection to remote SQL Server 2000 using servlets. How to do it? ( ....... )
asp problem of output messages in classic asp
Consume WebServices in classic ASP using Microsoft SOAP ToolKit. Remote Access Connection Manager S that you can turn it into an ASP.NET control by simply adding the runat="server ( ....... )
connect to an oracle database
This sample code shows you how to connect to an Oracle database using C#. SQL Server 2005 ( ....... )
oracle
Finally I managed to connect to the remote database using Oracle Connection Manager, after struggling for Active Server Pages applet ASP Databases ASP TRAINING Beginning DHTML Beginning ( ....... )


















Your server is going to need a driver for Oracle. That means ODBC or OLE. You need one or the other in order to connect.
Assumung you truly cannot use ODBC, which I doubt, here’s an OLE connection string using Data Access Components:
“Provider=MSDAORA;Data Source=114.91.65.12:1521; User ID=userName; Password=userPassword;”
If that doesn’t work, you can try this:
Provider=OraOLEDB.Oracle; Data Source=114.91.65.12:1521; User Id=myUsername; Password=myPassword;
And I’d go ahead and try ODBC, since I’ve never heard of a Web server with OLE but without ODBC:
Driver={Microsoft ODBC Driver for Oracle}; ConnectString=114.91.65.12:1521; Uid=myUsername; Pwd=myPassword;
In all the strings above, you need to remove the spaces following semicolons (;)