Tagged Questions

3
votes
1answer
335 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 …
3
votes
4answers
1k 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 …
1
vote
1answer
13 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
2answers
544 views

Excel cell-values are truncated by OLEDB-provider

Hi folks, I'm using the OleDbConnection class to retrieve data from an Excel 2000/2003 workbook: string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data …
1
vote
6answers
1k 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

Connecting MS Access 2000 Database (.mdfb) file in ASP.NET 3.5

How to connect Access 2000 Database (.mdb) file in ASP.NET 3.5 ? In OleDBConnection object i have selected provider as Microsoft Access Database File (OLE DB) and specified the (.mdb) file. But I …
0
votes
2answers
35 views

Example of Where cluase query including the MSACCESS database connection in C#

similar to title. just want an example of Oledb connection with Where clause query.
0
votes
2answers
45 views

Reading an XLS file with the Microsoft Jet Engine

Hi, I want to allow my application to allow import of data through XLs files. I already do this with CSV files and XML files, but would like to open the scope for users. I am having trouble with …
0
votes
4answers
164 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 = …
0
votes
3answers
154 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) …
0
votes
4answers
305 views

Obtaining First Excel Sheet Name With OleDbConnection

Hi, 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 …
0
votes
1answer
77 views

OLE DB Exception - database/user/password is too large

I'm trying to connect to a database using OleDbConnection and a connection string, the error given within the try-catch statement is 'database/user/password is too large'. What does that statement …
0
votes
4answers
738 views

ASP.NET and VB.NET OleDbConnection Problem

I'm working on an ASP.NET website where I am using an asp:repeater with paging done through a VB.NET code-behind file. I'm having trouble with the database connection though. As far as I can tell, the …