dsn

Microsoft dBase driver Windows 7 ODBC data administrator

Hi I'm on windows 7 trying to set up with ODBC data source administrator a dBase DSN connection. We have this on the servers and I'm trying to replicate on my local machine to test but I can't find the Microsoft dBase driver that we use on my machine. Does anyone know how to get this on Windows 7? ...

database dsn creation

hi how to create a DSN name at run time using java coding? ...

Duplicate SQL Server database on same server cannot be accessed

I am using SQL Server Workgroup Edition on Windows Server 2003 R2 My classic ASP pages access my production database using a system DSN. All working here. Code like this... <% dbName= "ProdDB" userID = "PublicUser" pwd = "PublicUserPW" Set objConn = Server.createObject("ADODB.Connection") objConn.connectionString = "DSN=MySyste...

Troubles with JDBC-ODBC, DSN-less connection strings, and 64-bit Windows 7

I'm dealing with an issue that has arisen for an application I've been working on which connects to a Access file via JDBC-ODBC. On other Windows platforms, this issue hasn't been encountered, but on Windows 7 64-bit boxes, attempting to connect with DSN-less connection strings return: java.sql.SQLException: [Microsoft][ODBC Driver Mana...

How can I list the views of a database with a DSN connection?

First, I want to show you the code I'm working on (VB6): Dim db as Connection Dim rs as Recordset Dim rs1 as Recordset db.Open "DSN=Oracle 10g; Uid=myUser; Pwd=myPassword;" 'I also tested SQLServer2005 'I connect successfully Set rs = db.OpenSchema(adSchemaTables, Array(Empty, Empty, Empty, "TABLE")) ' Everything ok here. I can list ...

DSN-less connection to SQL server in VB.NET

Tried seemingly everything here to get this to work but I keep getting "Keyword not supported" errors for just about every iteration of dsn-less connection strings I can find out there in internet land, two are shown below. Public cnSystem As New SqlClient.SqlConnection Public Sub ConnectToSQL() Dim sConnectionString As String ...