Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
2k views

OleDbException System Resources Exceeded

The following code executes a simple insert command. If it is called 2,000 times consecutively (to insert 2,000 rows) an OleDbException with message = "System Resources Exceeded" is thrown. Is there ...
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 ...
2
votes
2answers
253 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
419 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:- ...
1
vote
2answers
282 views

Unable to fill OleDbDataAdapter with data

I am unable to fill data in the OleDbDataAdapter I get an OleDbException with the following message Syntax error in FROM clause. at this line adapter.Fill(dataset, "User") Here is the code Imports ...
1
vote
1answer
352 views

oledb connection error for stack trace

Hi All I'm doing CRM Application in ASP.net. for which i use MS Access as back end. On Localhost no any oledb exception error occure while the same application upload on server then there will ...
1
vote
2answers
542 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
1answer
292 views

Error executing update over OLEDB from C#

I am using OLEDB to Update data in .dbf database from c#. I get Error: System.Data.OleDb.OleDbException {"Undefined function 'replace' in expression."} on ExecuteNonQuery. How can I make this work ...
1
vote
1answer
2k views

System.Data.OleDb.OleDbException: Too many fields defined

I'm working on building a .NET WinForms application to replace a series of forms in a Microsoft Access (insert collective groan here) database. In an effort to get the initial version finished, I am ...
0
votes
2answers
66 views

Syntax error in INSERT INTO statement. Can anyone help me with this?

Here is the exception: System.Data.OleDb.OleDbException was unhandled Message=Syntax error in INSERT INTO statement. Source=Microsoft Office Access Database ...
0
votes
3answers
56 views

OleDbException Was Unhandled: Error in Displaying Information from Database

I'm new creating applications using Visual Studio 2010 and Microsoft Access 2007. I already created forms and it runs smoothly without getting any errors. However, one of the forms is having trouble ...
0
votes
0answers
270 views

C# OleDbException Excel Export - The field is too small to accept the amount of data you attempted to add

I have an Excel Provider class that is responsible for creating the tables when I export data to excel. I am getting the following OleDbException very rarely when I attempt to export data. ...
0
votes
1answer
162 views

OleDB Exception : Can-not find installable ISAM Exception, What's wrong?

I have the following code : Imports System.Data.OleDb Private Sub getData() Dim connStr As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\rawData.xlsx;Extended Properties=Excel 12.0 ...
0
votes
2answers
559 views

Syntax error (missing operator) in query expression 'System.Byte[]'

Hi i was using stored procedure in SQL Server to pass parameters to the query , but now I'm changing my database to ms access and it's my first time to deal with. how can i pass byte[] to sql query ? ...
0
votes
1answer
354 views

System.Data.OleDb.OleDbException: Unspecified error

I'm Totally new in ASP.net and currently working on a CRM application. This project uses .mdb files as backend but I am getting the following runtime error: Description: An unhandled exception ...
0
votes
2answers
1k views

Syntax error in INSERT INTO statement in c# OleDb Exception cant spot the error

EXACT duplicate of Syntax error in INSERT INTO statement in c# oledb? Hi I cant spot the error. Please help. There is an OleDb Exception due to a Syntax Error. Syntax error in INSERT INTO ...
0
votes
2answers
241 views

OleDB + Jet: Syntax Error in Join Operation

I've built a complex query for my access database and in access it works like a charm. But when I try to run the same query in my program via OleDB I get the exception "Syntax Error in Join ...
0
votes
3answers
4k views

Sql error “Arithmetic operation resulted in an overflow.”

I am running a service that does some computation and communicates with an ms sql server every minute or so (24/7, uptime is very important) and writes to error log if anything funny happens (like a ...
0
votes
2answers
220 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 ...