.net - Excel ODBC On 64-bit?

Sep 21, 2010

I fear this has been beaten to death, but I'm still struggling with the problem of reading Excel files in my ASP.NET application that has recently been ported to Server 2008 and 64-bit.Many posts I find point to the existence of 64-bit Microsoft drivers here:here and here. My concern is the warnings I'm also reading about these not intended "As a replacement for the Jet OLEDB Provider in server-side applications" possibly for thread-safe reasons? This IS a server-side application and while Excel uploads aren't hundreds-of-times-a-day ocurrances, they will be done by customers.I know there are also commercial libraries available and while I'm opening to considering them I do worry about the 'revision chase' and not getting burned by them going belly-up (it has happened to us before).

View 2 Replies


Similar Messages:

Configuration :: Web.config - Odbc For Entity Framework - Odbc Tcpip Parameters In Connection String?

Jan 12, 2011

my webserver is in the DMZ. The Database in the intranet. For connection from webserver to database the following entry is made in the odbc connection "TCPIP BCAST=NO;HOST=Intranet.Firma.local,Intranet_Spiegel.Firma.local,Intranet_Arbiter.Firma.local;PORT=2639}"

how to get this options in the connection strings working, or how i must modify the entitiy framework connection string to use the odbc entry?

<add name="KA_Entities" connectionString="metadata=res://*/Models.KA_Model.csdl|res://*/Models.KA_Model.ssdl|res://*/Models.KA_Model.msl;provider=iAnywhere.Data.SQLAnywhere;provider connection string="UserID=user;Password=password;DataSourceName=Databasename""
providerName="System.Data.EntityClient" />
<add name="KAPortal" connectionString="UserID=user;Password=password;DataSourceName=Databasename" providerName="iAnywhere.Data.SQLAnywhere" />

I tried to use odbcfor the entity framework, but the Wizard always add the right .NET Provider and not the odbc

View 1 Replies

Access :: How To Use Parameters For Odbc

Jun 22, 2010

Actually used to use Sql server, for that I add parameters like this

com.Parameters.Add("Field1",SqlDbType.Nvarchar,50).value=TextBox1.Text.

that works fine. but while using MSaccess and the datatype for of some table is Memo than how could I use parameter for that i am using System.Data.Odbc. cos here it is easy to do SqlDbType.Nvarcha cos there is shows Nvarchar but not Memo

View 3 Replies

ODBC.Net Connection To MySQL DB

Oct 1, 2010

I'm thinking the problem here is with my SQL Syntax, but I'm not sure and need a fresh pair of eyes to check it out. This is the code I'm using to connect to and then insert into the DB:

OdbcConnection datConn = CreateDataConn();
datConn.Open();
OdbcCommand comm = new OdbcCommand();
comm.CommandText = "INSERT INTO userdata (key, secretkey, uid) VALUES ('" + token + "', '" + secret + "', '" + twitterid + "');";
comm.Connection = datConn;
comm.ExecuteNonQuery();
datConn.Close();

And here is the CreatDataConn() method:

private OdbcConnection CreateDataConn()
{
OdbcConnection dbConn = new OdbcConnection();
dbConn.ConnectionString = "Dsn=MySQL;database=twittertest;option=0;port=0;server=localhost;uid=root;pass=Red!4jedi";
return dbConn;
}

I created a DSN to the database, which is hosted on my machine. When I run the application I get this error:

ERROR [42000] [MySQL][ODBC 3.51 Driver][mysqld-5.1.51-community]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'key, secretkey, uid) VALUES ('127090765-i3aZl71LPSVUCPZs9kHSYeBli0vWpbq0BaM1roYC' at line 1

But for the life of me I can't figure out what's wrong with my syntax...It's prolly something simple, but again, I need a pair of fresh eyes to look at this.

View 1 Replies

SQL Server :: How To Use An ODBC Database

Sep 2, 2010

I have been developing my ASP.NET web pages to access the SQL database locally on my personal computer while using a "SqlConnection", but to access my SQL database on a host server, I must use a "OdbcConnection". I am mostly using LINQ to access data with a DataClassesDataContext, but sometimes I must use ADO with SqlConnection and SqlCommand. What must I do to convert my C# code in order to access data with ODBC 3.51?

View 2 Replies

C# - How To Connect A Database Using Odbc

Feb 28, 2011

I have a system DSN.How to connect to the database in asp.net using DSN.I wanted the Connection String

View 2 Replies

ADO.NET :: How To Connect Oracle Via ODBC

Jan 18, 2011

I would like to connect oracle via ODBC. I downloaded the dll and add as reference.

Here is the sample code:

Dim cn As OdbcConnectioncn = New OdbcConnection("PROVIDER=MSDAORA; DATA SOURCE=aaa; USER ID=aaa; PW=aaa;")
But getting this error "ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified"

View 2 Replies

ODBC To SQL Server Appending?

Jul 21, 2010

I am working on an asp webform that pulls from an ODBC datasource then puts the data in an sql server. Once the data is in the sql server several queries pull data from it to provide information for a report.

This is an example of what I am talking about private void ODBCpdEmployeeAb()

{ [code].....

The first part gets the data from the ODBC connection and the next part stores it in an sql server table.

I have set the primary keys on my SQL server tables already but it just loads an error page now when the app runs due to duplicate id's

Is there a way to append the most recent data from the ODBC table to the sql server ?

View 6 Replies

DataSource Controls :: Difference Between Ole And Odbc?

Jun 9, 2010

i need some detail about ole and odbc.. what diffrence between ole and odbc

View 4 Replies

Informix Odbc Connection Slow To Open

Apr 28, 2010

I have an application that takes a long time to open odbc connections (like 20 sec) also takes forever using arcmap and arcsde but when I try the connection on the odbc data source administrator, it tests it really fast. Does anyone have any idea of what my be causing this? btw the application works fine in another computer with another database

View 2 Replies

Databases :: Using ODBC Command And Adding Parameters To It?

Jun 10, 2010

I am using ODBC command and adding parameters to it. But it always keeps on saying procedure proc_Update expects a parameters @id which was not supplies ( this errors comes for all the paramters that I add).

Here is my code:

[Code]....

View 1 Replies

C# - Sqlsntax And Odbc Code Wont Insert

Mar 22, 2011

it doesnt seem to insert anything?
{
string theUserId = Session["UserID"].ToString();
OdbcConnection cn = new OdbcConnection("Driver={MySQL ODBC 3.51 Driver}; Server=localhost; Database=gymwebsite; User=x; [code].....

View 4 Replies

ADO.NET :: Convert Web Form To MVC2 With ODBC Database?

Jan 4, 2011

I am going to convert a web form web site to MVC 2.0, i m using mySQL Database.

Currently the web form web site is working perfectly.

In Web.config :

[Code]....

But, When i try to create a simple page by using the same DB connection in MVC, i get error message:

Exception Details: System.ArgumentException: Keyword not supported: 'driver'.Line 17: public SqlProductsRepository(string connectionString)Line 18: {Line 19: productsTable = (new DataContext(connectionString)).GetTable<Product>();Line 20: }Line 21:

[Code]....

In Controller:

[Code]....

i did add mysql.data.dll & mysql.web.dll to Reference.

i also tried to change the DB configuration at web.config as following, but still not working:

[Code]....

Exception Details: System.ArgumentException: Keyword not supported: 'userid'.

View 1 Replies

Databases :: Read Image From MySQL With ODBC?

Sep 29, 2010

I have a problem that I can't figure out. I shall read an images from a column in a MySQL database. I use a simple aspx page and the codebehind file with the code below.

It is ok to read the image if I don't use any parameter value in the where clause, but if I use it, nothing is returned. I don't know if I have done anything wrong in the code. I have also tried to set a proper value on the parameter.value without success. So my conclusion is that the parameter sertup is wrong in my code.

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim PictureID As Integer = Convert.ToInt32(Request.QueryString("id"))
'Connect to the database and bring back the image contents & MIME type for the specified picture

[Code]....

View 1 Replies

Databases :: Passing Parameter Using ODBC - Mysql?

Sep 3, 2010

I'm having problem on passing parameter on odbc because it's not working at all. I tried this using sql and I have no problem at all. All are working fine. Is there a different syntax on odbc? Here's my code:

[Code]....

Or using mysql connector/net to use mysql. I'm having problem installing it because the visual studio integration is not working, so I can't find it on the data source provider.

View 12 Replies

Databases :: Remote Access Mysql Db Odbc?

Mar 29, 2010

I am trying to make connection to a remote database server and I am getting the following message. I think i have to grant access to the client maching from my database server.. How do i grant access to an ip addess?

ERROR [HY000] [MySQL][ODBC 5.1 Driver]Access denied for user 'thelp'@'123.29.14.30' (using password: YES)
ERROR [HY000] [MySQL][ODBC 5.1 Driver]Access denied for user 'thelp'@'123.29.14.30'(using password: YES)

View 2 Replies

Databases :: Using Parameters In TableAdapter - ODBC Connection To MySql

Feb 15, 2011

I am currently making a website on asp.net and i am creating methods using TableAdapter. I am connected to MySql using an ODBC connection. The select * from department will work perfectly for me but when trying to use parameters i am given an error message on the wizard. select * from department where name = @name gives me the error: Error in where clause near '@' unable to parse query text. also tried select * from department where name = ?: this gives me the error: No mapping exists from dbTypeObject to a known Odbc type.

View 3 Replies

Connect ASP Visual Web Developer 2008 To MySQL With ODBC 3.51

Jan 4, 2010

how to connect ASP to MySQL database. I have already install MySQL in my localhost, Add a connection through Data Source (ODBC) in ctrl panel and test connection succeed. Now I want to show the query on my default.aspx page so that I can do the insert / update / delete my table data in MySQL.

View 1 Replies

DataSource Controls :: How To Create ODBC Data Name Source

Jan 25, 2010

I am running:

Windows Server 2008

MS SQL Server 2008

MS SQL Server Native Client 2008

I need to create an ODBC Data Name Source. The instructions on microsoft site are not explicit enough.

View 18 Replies

Visual Studio :: MVC2 - How To Connect To ODBC Datasource

Jul 8, 2010

I have built an ASP.NET classic application that references an ODBC connection to a DBISAM database.

When I try to connect to the same database in a MVC2 application I do not see any option to select an ODBC Data Source.

1. I right-click on my Models folder and select Add -> New Item

2. Choose "Data" on the left panel

3. Select ADO.NET Entity Data Model than click "Add"

Options were:

ADO.NET Entity Data Model
DataSet
LINQ to SQL Classes
SQL Server Database
XML File
XML Schema
XSLT File

4. Select "Generate from database..... click "Next"

5. Here I am presented with a "Choose Your Data Connection" screen. When I click the "New Connection" button I am given a "Choose Data Source" screen.

6. I am only presented with the following options on the "Choose Data Source" screen:

Microsoft SQL Server
Microsoft SQL Server Compact 3.5
Microsoft SQL Server Database File
<other>

7. This is where I expected to see ODBC as one of my options. What do I need to do to access ODBC?

View 1 Replies

Databases :: MySQL Must Use ODBC Connector - Trying To Pass Parameters?

Jan 19, 2010

I am with GoDaddy (yeah, yeah, don't want to hear it) and must use ODBC to connect to my MySQL database. The connections are working fine but I have a GridView/DetailsView parent/child relationship set up between 3 pages. I know that these pages worked with a .NET Connector locally but after I changed them to ODBC, I only get the first part of the page, nothing that depends on data being selected works. This has led me to believe that I must alter the way I pass parameters to the next request page. I have read some things about using a question mark but I cannot figure out how I should apply it to my page as most examples are in C# or VB. My page is mostly pure ASP.NET and I'm not sure if I still continue to utilize the asp:ControlParameter. the code below.

how to get GoDady to alter their medium trust to accept sockets???? That's all it would take

This is the page my employees will use to view the people in the database and then select them and have a details view of that particular cust_code (customer code) pop up to the right of the gridview:

[Code]....

This is the page ( UpdatePrefCustomers.aspx ) that my employees, who will be allowed access it (yes, I already know how to apply authorization but will do it last before deployment so it doesn't drive me crazy when I preview in browser), will use to add, edit, and delete from the database. It must be accessed first and the other two pages, prefcust_edit.aspx and prefcust_insertt.aspx are called from it by passing the parameter cust_code:

[Code]....

Here is the prefcust_edit.aspx page:

[Code]....

Here is the prefcust_insert.aspx page:

[Code]....

View 8 Replies

Databases :: ODBC 3.51 Driver]Can't Connect To MySQL Server

Feb 17, 2010

System.Data.Odbc.OdbcException: ERROR [HY000] [MySQL][ODBC 3.51 Driver]Can't connect to MySQL server on '127.0.0.1' (10048)ERROR [HY000] [MySQL][ODBC 3.51 Driver]Can't connect to MySQL server on '127.0.0.1' (10048)

[Code]...

View 5 Replies

DataSource Controls :: Connecting To Remote Database Using DSN And ODBC?

Mar 25, 2010

In my windows application, i am listing the System DSN's configured on the remote machine in a combobox. Once i select the DSN and click on Connect button, i should be able to connect to the remote database. I am trying to open the connection to the database using ODBC but am getting the below error.

ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified.

Below is the code sample

string conn = "Provider=MSDASQL;Remote Server=http://BLR1WKD010; Remote Provider=MSDASQL;DSN=" + clsODBC.pDBName + ";UID=" + txtUsername.Text + ";PWD=" + txtPassword.Text;

OdbcConnection odbcConn = new OdbcConnection(conn);

odbcConn.Open();

View 5 Replies

Why Does OpenEdge ODBC Connection Fail With Error 126 In IIS But On In VS2010

Dec 16, 2010

I have an ASP.net web service application that connects to a Progress OpenEdge 10.1B database via ODBC. My development machine is XP Pro and runs everything fine. I am now moving the application into a test environment. The test machine is also XP Pro. It matches the dev machine except for that the Progress Server is not running locally. I am able to run the project out of VS2010 and the web service makes the ODBC connection and returns the data without error. When I deploy the application to IIS (which is running locally) the ODBC connection fails with this error: *System.Data.Odbc.OdbcException: ERROR [IM003] Specified driver could not be loaded due to system error 126 (OpenEdge 10.1B driver).*

View 1 Replies

DataSource Controls :: Execute SP With Return Parameter From ODBC?

Aug 9, 2010

[Code]....

The code:

[Code]....

[Code]....

I getting the error:ERROR [42000] [Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near
'@P1'.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved