Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
494 views

In a C# application, should a DB Connection be created once, or everytime a SQL statement is executed?

In a C# application, should a OleDBConnection be created once, or every time a SQL statement is executed? I am looking at C# code written by someone else. Every SQL statement is preceded with the ...
7
votes
1answer
1k views

Best way to check OleDbConnection state

Apparently (MSDN) sometimes OleDbConnection.ResetState() does nothing, so even if the connection fails OleDbConnection.State will still be set to Open. I am looking for best workaround for this, so ...
5
votes
3answers
1k views

Reading from Excel: Microsoft.Jet.OLEDB.4.0 error on 64 bit systems

I am reading the contents of an excel sheet in my application using: OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fileName + ";Extended ...
4
votes
3answers
193 views

Number of query values and destination fields are not the same in c#

I am new in Access database , I am getting an error while inserting data in database The error is "Number of query values and destination fields are not the same". Insert code: OleDbCommand ...
4
votes
5answers
186 views

What am I compromising by running my application as 32 bit in a 64 bit OS Machine

We recently moved from Windows XP to Windows 7. We found that one part of application in C# that try to create a dbf file for a PDA failed thorwing an error message "The 'Microsoft.ACE.OLEDB.12.0' ...
4
votes
1answer
1k views

Help with a OleDB connection string for excel files

The problem i'm having is that the data adapter is looking at only the first row in each column to determine the data type. In my case the first column "SKU" is numbers for the first 500 rows then I ...
4
votes
2answers
2k views

How to force ADO.Net to use only the System.String DataType in the readers TableSchema

I am using an OleDbConnection to query an Excel 2007 Spreadsheet. I want force the OleDbDataReader to use only string as the column datatype. The system is looking at the first 8 rows of data and ...
4
votes
3answers
3k views

Excel cell-values are truncated by OLEDB-provider

I'm using the OleDbConnection class to retrieve data from an Excel 2000/2003 workbook: string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + ...
3
votes
3answers
2k views

Problem with using OleDbDataAdapter to fetch data from a Excel sheet

First, I want to say that I'm out on deep water here, since I'm just doing some changes to code that is written by someone else in the company, using OleDbDataAdapter to "talk" to Excel and I'm not ...
3
votes
1answer
486 views

OleDB connection only working when debugging

I have a C# application that connects to a named SQL Express instance on the local machine using OleDBConnection: _connection = new OleDbConnection(_strConn); _connection.Open(); _strConn is ...
3
votes
2answers
704 views

SQLCommand/SQLConnection vs OleDbCommand/OleDbConnection

Does it make a difference whether I use SQLCommand/SQLConnection instead of OleDbCommand/OleDbConnection. Do I get any advantages out of that, from a API comfortability, feature, performance or ...
3
votes
4answers
3k views

C# Issue: What is the simplest way for me to load a .MDB file, make changes to it, and save the changes back to the original file?

My project that I am working on is almost finished. I am loading a .MDB file, displaying the contents on a DataGrid and attempting to get those changes on the DataGrid and save them back into the .MDB ...
2
votes
2answers
75 views

How to improve MS Access INSERT performance

I have a C++ program that insert about a million of records into MS Access DB using OLEDBConnection. To do that, I ran the INSERT INTO query a millions time in order to get the records inserted which ...
2
votes
1answer
71 views

OleDbConnection() opens an Excel file in any open Excel window. But does not if there isnt a window open

I am writing an application which uses an OleDbAdapter to access information in an Excel file. When I try to create a connection to the Excel file if the user has another (unrelated) Excel file open ...
2
votes
1answer
119 views

How to clear the connection pool for an OleDbConnection

I am connection to an Access Database using a OleDatabase Connection. The problem is that I need to programmatically run the compact and repair operation on the database, however I can not do this ...
2
votes
1answer
201 views

Why one Public OleDbConnection is deprecated? Alternative to solve the bug: too many connections opened

I have to work with a Project made by another developer. A project Win-Form with Visual-Basic code, with MS-Access as db and some OleDbConnections. There is a bug: sometimes the application can't open ...
2
votes
1answer
109 views

OleDbAdapter reading column data

I have created a function to read an excel sheet using OLEDb. I can make the connection and read the excel sheet. With DbDataReader and a while loop using Read() method I retrieved all cell data ...
2
votes
2answers
252 views

How to get rid of the exception “The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine” in Win 7

I am running an ASP.NET C# application on .NET 4.0 framework using VS2010 on a Win 7 machine. Within my code I want to link Excel file with "DataTable" object. ie I want to access the data within ...
2
votes
0answers
416 views

OleDB Connection string for reading an Excel file exclusively opened by other user

Can anyone tell me OleDB Connection string to be used for just reading an Excel file exclusively opened by other user? I tried following connection string which did not work for me:- ...
2
votes
2answers
884 views

System.Data.OleDb.OleDbConnectionInternal..ctor: Unspecified error

After several hours (~6 hours Win7 64bit, ~24hours WinXP) of running multi-threaded (.NET Framework 3.5 SP1 WinForms) desktop application using .mdb files as backend I'm getting the following runtime ...
2
votes
2answers
164 views

ADO.net Connection Pooling

In the code below, the Provider object only has one instance of a DbConnection. Each reader will reference the same connection instance. According to the Microsoft documentation, the second reader ...
1
vote
0answers
41 views

OleDbConnection.Open() hangs

We have a windows service written in c# .net 3.5 and it reads/writes to an access db. We were careful to put all 'new OleDbConnection()' instances in a 'using' clause and similarly make sure ...
1
vote
2answers
244 views

OLEDB connection to Access Database (accdb)

I want to make a simple application for an exercise, so it could be nice to connect to a simple database like Access (.accdb) My program looks like this: using System; using ...
1
vote
0answers
164 views

Dapper And System.Data.OleDb DbType.Date throwing 'OleDbException : Data type mismatch in criteria expression'

Not sure if I should raise an issue regarding this, so thought I would ask if anybody knew a simple workaround for this first. I am getting an error when I try to use Dapper with OleDbConnection when ...
1
vote
5answers
336 views

Parsing CSV using OleDb using C#

I know this topic is done to death but I am at wits end. I need to parse a csv. It's a pretty average CSV and the parsing logic has been written using OleDB by another developer who swore that it ...
1
vote
2answers
211 views

C# - OleDbConnection.Open() causing a crash

Fairly new to C#, anyway, I have this Initialise method that I've written, it basically creates a connection to a MS2007 Access Database, fills a DataSet with the 4 DataTables that are the result of ...
1
vote
2answers
57 views

Loading information from a database problem in c#

This is what i am trying to do. I have a database that i am reading from using the code: OleDbCommand command; command = new OleDbCommand("SELECT " + Student.ID + " FROM " + newStudent.DataFile, ...
1
vote
1answer
520 views

connect sql server 2008 to visual c++ win32 console application

Can anyone help me to connect sql server 2008 to visual c++ win32 console application.? I wonder someone can published a sample code with header files that need to include. Thank you for your bigger ...
1
vote
1answer
136 views

Datatype mismatch in query expression with OleDbCommand

char zoneCH = '-'; string insertString = "UPDATE streets set TmpColumn=City+'" + zoneCH + "'+State+'" +zoneCH +"'+Zip WHERE 1"; OleDbCommand com1 = new OleDbCommand(insertString, mdbConnection); ...
1
vote
1answer
155 views

Find connection string for connecting to MySQL Server 5.1.50 using OleDbConnection

I am interested how can I find the connection string in order to be able to connect to MySQL Server 5.1.50 using OleDbConnection(C#). I used this auto generated string (after adding new data source ...
1
vote
0answers
366 views

Using OleDbConnection to retrieve Excel sheet names with special characters

Hey all, I am trying to get a list of sheet names from an Excel file using OleDbConnection. (NOTE: This program will run on a server so no option to use office interop classes). So everything works ...
1
vote
0answers
128 views

C# OleDbConnection.Open causes a buffer overrun

I have this OleDbConnection which is trying to open a connection using the OleDbConnection.Open() method but it throws me the exception: Attempted to read or write protected memory Does ...
1
vote
2answers
539 views

ACE oleDb drivers unable to handle huge excel files

Does ACE OLEDB drivers have any known issues with larger files? I am using the below code to retrieve the worksheets in a 400Mb xls file public string[] GetWorkSheets() { var ...
1
vote
3answers
226 views

Problem with connection string and ISAM

I have the following problem. Have little application which read some data from excel file. Here is my connection string: @"Provider=Microsoft.ACE.OLEDB.12.0;"+ @"Data ...
1
vote
2answers
315 views

Error message “is not a valid path” when trying to load CSN file using OleDbConnection

I want to have an ASP C# WebSite that loads a simple CSV File and present it in a GridView control (at least for a start). I already have a piece of code that do almost all of the work, what i miss / ...
1
vote
3answers
1k views

How do I connect to different versions of Excel from C#?

I have a program that imports data from Excel into a dataset. To connect to Excel I use the following code... return new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + ...
1
vote
2answers
225 views

Converting excel table to C# DataTable is cropping off some data

i am using the following code to convert an excel set of data on a worksheet to a C# dataTable: var connection = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + _filename + ...
1
vote
2answers
710 views

Windows Service hangs when opening OLEDB-connection to Excel-file

I have a Windows Service that hangs when opening an OLEDB-connection to an Excel-file, like this: using (var connection = new OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" ...
1
vote
1answer
177 views

OleDbConnection failed creating a new excel file

I have to use OleDbConnection to create a new excel file, but when I open connection with this string: OleDbConnection excelConnection = new OleDbConnection( ...
1
vote
4answers
4k views

Excel reading in ASP.NET : Data not being read if column has different data formats

I have an asp.net C# application where i am reading the contents of a spreadsheet using OLEDBConnection. I am using the below line of code to read from the excel spreadsheet. OleDbConnection con = ...
1
vote
2answers
778 views

SELECT through oledbcommand in vb.net not picking up recent changes

I'm using the following code to work out the next unique Order Number in an access database. ServerDB is a "System.Data.OleDb.OleDbConnection" Dim command As New OleDb.OleDbCommand("", serverDB) ...
1
vote
3answers
2k views

Obtaining First Excel Sheet Name With OleDbConnection

I have one problem. I need to get the excel sheet name in a work book, which looks on the very left sheets tab -the first one from my point of view. I am using this code: public static string ...
1
vote
7answers
6k views

OLEDBConnection.Open() generates 'Unspecified error'

I have an application that uploads an Excel .xls file to the file system, opens the file with an oledbconnection object using the .open() method on the object instance and then stores the data in a ...
0
votes
0answers
14 views

OLEDB connection crashing when attempting to open

While debugging, there is an InvalidOperationException thrown by the ServerVersion belonging to the connection. vshost32.exe crashes when connection.Open() is called. Here is the connection string ...
0
votes
1answer
26 views

Selecting the Excel sheet used range using OLEDB Connection

Is there any way to select the Excel sheet used range via OLEDB Command object? Because I have an Excel file that has 400 rows, but when I delete 200 rows and try to select the sheet again, it's ...
0
votes
1answer
31 views

Writing an SQL OleDbCommand to import data from SqlServer To An Access Database

I have the following code : ADOX.Catalog cat = new ADOX.Catalog(); string pathToNewAccessDatabase = "Data Source=D:\\Data\\NewMDB.mdb"; cat.Create("Provider=Microsoft.Jet.OLEDB.4.0;" + ...
0
votes
1answer
41 views

Unable to connect to Oracle 11g via OLE DB

SOLVED: My VC++ application was in 32 bit and my Oracle DB was in 64 bit. I initially though that the client would work with both versions of Oracle, however, it doesn't. I thus solved the problem by ...
0
votes
3answers
48 views

OleDbCommand.ExecuteReader Throwing Exception

My C# .NET 3.5 application is throwing an unusual exception when executing OleDbCommand.ExecuteReader. The application makes 5 similar queries of an Access 2007 database. Three of the queries ...
0
votes
3answers
62 views

Comma getting removed in dataset after importing data from excel to Dataset

i am using Vs 2008. We have one functionality where we import excel file,Now excel file can contain numeric data with comma,.However when look at Dataset for same numeric column Commas are getting ...
0
votes
1answer
80 views

Uploading excel on Windows Server (Microsoft.ACE.OLEDB.12.0 is not registered on local machine)

I'm trying to upload an excel file. I have an ASP.NET test site on my local machine,where the upload works fine. However, when I put the same site onto a server machine and then try to upload, it ...

1 2