Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
171 views

How do you programmatically create a System DSN using Powershell or .NET?

How do you create a System DSN in the control panel on ones PC using Powershell or .NET?
4
votes
1answer
270 views

Creating Database at run time and registering it as DSN at run time

I am trying to create an ACCESS DB at run time and register is as a DSN in ODBC.ini using the following code: BOOL fCreated; fCreated = SQLConfigDataSource(NULL,ODBC_ADD_DSN, "Microsoft ...
4
votes
3answers
2k views

Specify a default driver for ODBC

I have a legacy VB6 app which builds a DSN based on a parameter in a config file. The parameter is an ODBC connection, and the connection has a name (DSN-NAME) which maps a server (DBSERVER) to a ...
4
votes
2answers
4k views

How do I create a DSN for ODBC in Linux?

I am digging around in a Linux application that supposedly uses DSNs to connet to SQL Server. The connection stopped working and I can't find the credentials that are being used (all I know is the ...
3
votes
2answers
83 views

How to configure ColdFusion's ORM for multiple session scope DSNs?

How do you configure ColdFusion 9's ORM to use multiple DSNs if possible? Is is possible to setup the datasource in the context of a session scope instead of the application scope? Or how, in CF9, ...
3
votes
1answer
531 views

Keyword not supported exception when attempting to use a connection string that points to a ODBC DSN

I created an ODBC DSN for my Asp.Net MVC application's database access. One of the main reasons is it makes it easy to keep database credentials (such as server address, port, username, and password) ...
3
votes
1answer
419 views

Detecting if an email is a “Delivery Status Notification” and extract information - Python

I'm using the Python email module to parse emails. I need to be able to tell if an email is a "Delivery Status Notification", find out what the status is, and extract information on the email that ...
3
votes
2answers
893 views

Programatically create ODBC connection and link tables in MS Access

We are using MS Access as a reporting front-end for Oracle. The data is accessed via an ODBC connection, and there are two linked tables in Access to Oracle that are the raw data tables. I'd like to ...
3
votes
2answers
2k views

SSRS: Error while querying data from an Excel file (through ODBC)

I am trying to render a simple chart using SSRS. The data is in an Excel sheet. I have set up an user DSN and created a data source in SSRS using ODBC. I am able to query the excel in "Data" tab. ...
3
votes
5answers
2k views

What is the simplest, most maintainable way to create a SQL Server ODBC Data Source?

I need a programmatic way of creating a SQL Server ODBC Data Source. I can do this by directly accessing the Registry. It would be better if this could be done via an available (SQL Server/Windows) ...
2
votes
1answer
25 views

Using a file DSN with JDBC

I can happily connect to a System DSN using JDBC: DriverManager.getConnection("jdbc:odbc:SysDSN"); If I try and use a File DSN however I get an error: [Microsoft][ODBC Driver Manager] Data ...
2
votes
1answer
60 views

How do I get the response back from server after an email sending?

I want to get response from server with server status (eg. 200, 500) that says if message was delivered. How to do that? >> s = smtplib.SMTP('...') >> resp = s.sendmail('me@me.com', ...
2
votes
1answer
80 views

PEAR::Mail with DSN SMTP service

Do you know if it is posible to set a DSN communication using the Pear Mail function in PHP? Explain: If a write this code in a telnet session: telnet smtp.example.com 25 [...] mail from: ...
2
votes
2answers
198 views

How do I install an ODBC driver using C# during my apllication setup?

I am making an application using c#.net. The application relies on a PostgrSQL ODBC driver and therefore has to check if the driver has already been installed on the user’s computer. If not the ODBC ...
2
votes
1answer
113 views

DSN Util C#(Won't create)

I was following this other post --> C# DSN Util So I have the following code. (Slightly Modified) OdbcConnection DbConnection = null; try { DbConnection = new ...
2
votes
2answers
442 views

Is it possibel to use (fluent)nhibernate with an odbc connection?

i have to use a custom odbc driver. All i need to pass as a connection string is the DSN. How do i do this with (fluent)nhibernate? FluentNHibernate.Cfg.Db does only offer a ...
2
votes
1answer
711 views

On windows 7, my VB6 app can't see 'System' DSN's but has no trouble finding 'User' DSN's

For a while I was stuck trying to get a visual basic 6 app working in Windows 7. The last remaining snag was that it just couldn't find the DSN when starting up. On a hunch, I deleted the system DSN ...
2
votes
2answers
650 views

creating DSN entry at runtime?

How can you add a system DSN with its security credentials programmatically at runtime from VB.NET? Keeping key in ODBC.INI is done, but when creating ODBC, it asks for Authentication Type (SQL or ...
2
votes
2answers
92 views

Is it possible to create a DSN on a remote server in C#

I am trying to create a script such that I am given an array of server names and from these names I would like to create a system dsn on each of those respective machines. I know that you can use ...
2
votes
5answers
9k views

File DSN for iSeries AS400 ODBC connection

How can I create a file dsn for connecting to an AS400 system using the iSeries ODBC driver? The iSeries ODBC driver allows many settings to be configured. Where can I find a list of all properties ...
2
votes
3answers
1k views

Set LINQ DSN for DataContext

I normally store all my configs in the registry. Even though I have started using LINQ I would not like to have the DSN in the web.config, but rather let it stay in the registry and attach it (maybe ...
1
vote
0answers
33 views

clisp, plain-odbc, and connecting to a sql server database

I'm having issues connecting to a sql server database from an openbsd box using unixODBC. When I use isql I get through just fine: $ isql localProdSqlServer jegdemir GBE#oct ...
1
vote
1answer
139 views

access 2010 connection with java

i have written a class [as shown by most tutorials] to make connection to an Access 2010 database package dataBase; import java.sql.Connection; import java.sql.DriverManager; import ...
1
vote
3answers
114 views

Determine Database Type from ColdFusion Data Source

I have web site with source code in ColdFusion. How can I find out which database is used and where is database files? Thank you! Also, I haven't access to CF Admin.
1
vote
1answer
194 views

List ODBC DSN Configurations in a Text File

When my machine is reimaged or swapped out, I have to take a screenshot of each Data Source in my the Microsoft ODBC Administration tool to make sure I get it right on the new machine. Even going to ...
1
vote
1answer
118 views

32 bit application cant find DSN or Drivers on 64 bit Windows Server

I have a 32bit application running on 64bit windows utilising DSN to connect to a MS SQL database. I'm getting the following error message: Data Source Name not found I've searched around a lot for ...
1
vote
3answers
156 views

How to verify a remote DSN entry?

I am creating a verification utility that check various parts of an application to ensure they are configured correctly. One of the things I need to check is that the DSN entry in a Web.config file is ...
1
vote
1answer
332 views

Connect to ONLINE MySQL database using DSN ODBC

I am connecting an online MySQL database. I have downloaded MySQL ODBC Connector 5.1. Now am trying to setup the DSN. But am getting the error: Connection Failed : [HY000] [MySQL] [ODBC 5.1 ...
1
vote
2answers
77 views

Case Sensitivity Of Datasource Names

All, I Have a small confusion about Case sensitivity of ODBC DSN names. Say, you have configured a DSN in your machine with lower case "serverabcd" but in the web.config it's written in upper case ...
1
vote
1answer
2k views

Creating a DSN-less connection for MS Access within Java

I'm building a desktop app that needs to communicate with a MS Access database. Now, unless I want to register the DSN for the database on every computer that's going to use the desktop app, I need a ...
1
vote
3answers
548 views

Membership provider deployment issue

I am trying to deploy a asp.net mvc site. My hosting service provider provides me dsn database connection for my sql server 2008 database. I changed my web.config to use dsn connection using this ...
1
vote
1answer
230 views

Pass through Query Fails with Stored Procedure using Linked Servers

I've created a stored procedure in SQL Server that in turn is using a linked server to query two databases. The results are returned as expected in Query Analyzer, but when I try running the same ...
1
vote
2answers
229 views

My C++ application cannot connect to Informix DB server

I've an application (can't provide code, as it's very long), that uses unixODBC. Also, I have installed isql. Everything seems to be configured correctly - drivers, servers and so on, as using isql, I ...
1
vote
1answer
152 views

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 ...
1
vote
1answer
88 views

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" ...
1
vote
2answers
437 views

How to connect to Access Database via Data Sources (ODBC) using a mapped network drive?

I need to make a connection to an Access Database. In order to do that I created a System DSN. I had success making that connection using local files. However, the database must be at a remote server ...
1
vote
3answers
506 views

How to setup SQL database connection in Java application?

I need to make an application in Java , which needs to use SQL database . I wil provide the users with the database file , but that won't run because to setup the database connection we first need to ...
1
vote
1answer
459 views

Command line to change path to .mdb file for MS Access ODBC System DSN?

What odbcconf.exe command line can I use to change the path to the MS Access .mdb file for an already existing System DSN?
1
vote
1answer
360 views

How to safely identify a DSN (delivery status notification) message

I'm fetching emails from a POP3 server and I'd like to make a difference between a regular email and DSN (Delivery Status Notification) / NDR (Non-Delivery Report/Receipt) messages. What is the ...
1
vote
1answer
472 views

Connect to MySQL database from VBA without having MySQL installed

I can connect to a remote MySQL db from an Excel workbook on my machine no problem using the following connection string: Driver={MySQL ODBC 5.1 ...
1
vote
0answers
141 views

DSNless connection for Aruna DB?

Right now we are using Fastpath ODBC DSN connection method to access our "ARUNA" Database. Our development platform is C# on the .NET Framework. We are in need of connecting the DB without using DSN. ...
1
vote
2answers
103 views

Query with Two Different DSN

I have a query: <asp:SqlDataSource runat="server" ID="SqlDataSource1" ConnectionString="Dsn=Xdb;uid=xxx;pwd=xxxxxxx" ProviderName="System.Data.Odbc" SelectCommand="SELECT XReqOrders.LoadNum, ...
1
vote
2answers
162 views

One regular expression to match parts in various positions

I'm trying to parse a DSN (from a Symfony application) using regular expressions, in order to link with a secondary application, but using the same database. The DSN I currently have is: ...
1
vote
1answer
475 views

Invoking SQL Loader with a DSN

I'm trying to load some data to an Oracle database using SQL Loader. Is it possible to invoke it with specifying the server to load the data into using a DSN instead of a TNS? Right now my command ...
1
vote
2answers
421 views

C# IsODBCServerAvailable

I want to implement a "smartODBCLogin". I know how to get a list of all engineNames and drivers from all ODBC data sources out of the registry. Now I want to know, which of these sources are ...
1
vote
2answers
665 views

When programatically creating a DSN for an Oracle database how can I reliably tell the driver name?

I have an application that connects via a DSN to an Oracle database. If the initial attempt to connect fails, then I make sure their DSN exists. If it does not exist, then I create it using the ...
1
vote
3answers
1k views

Excel query table still works after deleting File DSN, how is that possible?

I have an xls with a pivot table using a proc to populate it. I deleted the data connection in 'admin tools - odbc - file DSN' and it still works, how is that possible? Does that mean that the ...
1
vote
4answers
3k views

User DSN & System DSN - How to choose System?

Scenario: Our install package used to add User DSN. We changed this to install System DSNs due to Terminal Servers and Citrix. The problem is that some of these old User DSNs are floating around, ...
1
vote
2answers
2k views

How can I enumerate the list of DSN's set up on a computer using VBA?

I have an Excel application in which I want to present the user with a list of the Data Source Names (ie: DSN's), whereby s/he can choose what data source to use. Hopefully once I've got the list, I ...
0
votes
1answer
22 views

Convert PEAR::DB-style DSN into PDO-DSN

I am looking for a way how to convert a PEAR:DB / MDB2-style DSN phptype://username:password@hostspec/database into format supported by PHP PDO (such as this mysql case) $dsn = ...

1 2