Click here to Skip to main content
15,920,217 members
Home / Discussions / Database
   

Database

 
GeneralRe: Porting to Oracle V's DB2 from Access 2000 Pin
Heath Stewart11-Jul-03 8:19
protectorHeath Stewart11-Jul-03 8:19 
GeneralRe: Porting to Oracle V's DB2 from Access 2000 Pin
Mike Dimmick12-Jul-03 4:11
Mike Dimmick12-Jul-03 4:11 
GeneralRe: Porting to Oracle V's DB2 from Access 2000 Pin
Heath Stewart12-Jul-03 7:18
protectorHeath Stewart12-Jul-03 7:18 
GeneralRe: Porting to Oracle V's DB2 from Access 2000 Pin
Mike Dimmick12-Jul-03 7:24
Mike Dimmick12-Jul-03 7:24 
GeneralRe: Porting to Oracle V's DB2 from Access 2000 Pin
Heath Stewart12-Jul-03 7:32
protectorHeath Stewart12-Jul-03 7:32 
GeneralRe: Porting to Oracle V's DB2 from Access 2000 Pin
Mark Conger16-Jul-03 7:50
Mark Conger16-Jul-03 7:50 
QuestionDoes ODBC allow mapping to remote DSN via TCP/IP? Pin
Terry O'Nolley10-Jul-03 13:27
Terry O'Nolley10-Jul-03 13:27 
AnswerRe: Does ODBC allow mapping to remote DSN via TCP/IP? Pin
Nino_110-Jul-03 20:35
Nino_110-Jul-03 20:35 
tnolley wrote:
the DB resides on a remote machine

I'm assuming you are using MS Access, and that this is an ASP App, And that your are running Peer Web Services on your Win98 W/S.

You can share out the folder that the DB resides in:

\\servername\sharename\accessdb.mdb

You can then build your connection string by the following:

<code>Dim ConnectionToDb

Dim rsToDB

Set ConnectionToDb = Server.CreateObject("ADODB.Connection")

Set rsToDb = Server.CreateObject("ADODB.Recordset")

ConnectionToDb.Open "Provider=Microsoft.Jet.OLEDB.4.0;" &_
                    "Data Source=\\servername\sharename\accessdb.mdb;" &_
                    "Persist Security Info=False"

rsToDB.Open "TableName", ConnectionToDb, adOpenForwardOnly, adCmdTable

While Not rsToDb.EOF
    Response.Write rsToTb("FieldName")
rsToDb.MoveNext
Wend

rsToDb.Close
ConnectionToDb.Close
Set rsToDb = Nothing
Set ConnectionToDb = Nothing


Tony
GeneralRe: Does ODBC allow mapping to remote DSN via TCP/IP? Pin
Terry O'Nolley11-Jul-03 5:54
Terry O'Nolley11-Jul-03 5:54 
GeneralRe: Does ODBC allow mapping to remote DSN via TCP/IP? Pin
Nino_111-Jul-03 16:05
Nino_111-Jul-03 16:05 
GeneralRe: Does ODBC allow mapping to remote DSN via TCP/IP? Pin
Terry O'Nolley12-Jul-03 3:44
Terry O'Nolley12-Jul-03 3:44 
GeneralRe: Does ODBC allow mapping to remote DSN via TCP/IP? Pin
Mike Dimmick12-Jul-03 7:40
Mike Dimmick12-Jul-03 7:40 
GeneralRe: Does ODBC allow mapping to remote DSN via TCP/IP? Pin
Terry O'Nolley14-Jul-03 13:22
Terry O'Nolley14-Jul-03 13:22 
GeneralDataGrid columns renaming Pin
Kant10-Jul-03 7:39
Kant10-Jul-03 7:39 
GeneralRe: DataGrid columns renaming Pin
Not Active10-Jul-03 12:52
mentorNot Active10-Jul-03 12:52 
GeneralRe: DataGrid columns renaming Pin
Kant10-Jul-03 13:16
Kant10-Jul-03 13:16 
GeneralPass array to pl/sql procedure using .NET OracleClient Pin
IPC20009-Jul-03 8:45
IPC20009-Jul-03 8:45 
GeneralMSDE sp3 Installation Hangs Pin
Nathan Blomquist9-Jul-03 2:36
Nathan Blomquist9-Jul-03 2:36 
Questionquery problem? Pin
Asim N.9-Jul-03 2:20
Asim N.9-Jul-03 2:20 
GeneralMultiple SQLServer databases Pin
John Oliver8-Jul-03 23:12
John Oliver8-Jul-03 23:12 
GeneralRe: Multiple SQLServer databases Pin
Gaurav Bindlish9-Jul-03 3:23
Gaurav Bindlish9-Jul-03 3:23 
GeneralNeed an Access97 MDI application. Pin
WREY8-Jul-03 10:34
WREY8-Jul-03 10:34 
GeneralRe: Database Newbie Q Pin
Gaurav Bindlish8-Jul-03 9:34
Gaurav Bindlish8-Jul-03 9:34 
GeneralRe: Database Newbie Q Pin
Gaurav Bindlish9-Jul-03 3:19
Gaurav Bindlish9-Jul-03 3:19 
Generalstorage of images into oracle database as blob using vc++.net or ADO.net Pin
Shaffiq7-Jul-03 7:57
Shaffiq7-Jul-03 7:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.