Represents an SQL statement or stored procedure to execute against a data source using OLE DB provider.

learn more… | top users | synonyms

0
votes
1answer
34 views

OleDbDataReader gives Unsupported Data Type Error

I am using Oracle Db and calling a Simple Select Query but Oracle is throwing a weird error message: A first chance exception of type 'System.Data.OleDb.OleDbException' occurred in ...
0
votes
0answers
29 views

How can I use parameter in TableName

I'm reading some datas from excel and sheets' names are dynamic. I generate my command this way: OleDbCommand ex_cmd = new OleDbCommand("select * from [" + m_ExcelSheetName + "]", m_ExcelConnetion); ...
0
votes
1answer
32 views

OleDbCommand and Unicode Char

I have an application that run a lot of query using OleDbCommand. Every query is plain SQL text, and the command does not use parameters. Now, the application should support chinese char and I do ...
-1
votes
0answers
17 views

Big Query that run in Access 2010 but return Exception in OleDBCommand (Insufficient System Resources)

I've got a SELECT with a GROUP BY and many iif and string concatenation and many joins that runs without problems on tables of about 10.000 rows. If I run it on a tables of about 100.000 rows it runs ...
0
votes
2answers
73 views

Insert into database table with OLE DB .NET Provider won't work

I am getting an error msg of "syntax error" for the INSERT INTO command when it gets to cmd.ExecuteNonQuery. It is important that I use string.Format, and that the structure stays as close to the ...
2
votes
5answers
118 views

insert into access database

i have trouble inserting data from textbox into ms access database, i get an error "Syntax error in INSERT INTO." Can someone help me out please? (i'm new to c#) here's the code: ...
0
votes
0answers
39 views

multiple select statement in single OleDbCommand is not working

I am trying to select data from 2 access tables using a single command object. here is my code- using (OleDbCommand cmdCommand=new OleDbCommand()) { cmdCommand.CommandType = CommandType.Text; ...
0
votes
2answers
147 views

Update specific cell of excel file using oledb

I want to update the specific cell of the excel file using oledb. Say I7 cell, for some reason always I1 is getting updated. Can anyone tell me what's wrong with this code? OleDbConnection oledbConn ...
0
votes
4answers
52 views

Find out which query caused an exception

I have an OleDbCommand for my inserts that I have tried to implement to avoid SQL injection. Before that I used simple strings for my queries and I didn't like that. Now my piece of code for inserting ...
1
vote
2answers
250 views

c# and ms-access database inserting

I want to save data by save button from : idbox (textbox) - empbox (combobox) - jobbox (combobox) - unitbox (combobox) - destbox (combobox) - detectivebox (combobox) - statebox (combobox) ...
0
votes
1answer
93 views

OleDbConnection error: Your network access was interrupted

I'm using ACE OLEDB to run a query on an MS Access mdb file. This works on x86 machines but fails on x64. C# code (built with target platform x86): string conn = ...
1
vote
1answer
60 views

Is there a difference in syntax between OLE and Access

I ran this morning in a problem I can't find answer anywhere, so now I'm just asking to people who might have more knowledge than me on the subject ;). So here's the problem, when I'm executing a ...
0
votes
1answer
126 views

Update OleDb from DataGridView as Validated Using CommandBuilder

I just found out about the CommandBuilder, and thought it sounded straight foward and easy to use. Clearly I'm still missing things. I've got a DataGridView that successfully updates dbSet table ...
0
votes
1answer
188 views

Issues using OleDbConnection to export an image in an excel document in c#

I want to export an image to an excel document in c# The image the following formats: System.Windows.Media.Imaging.BitmapImage These are the connection details: private const string ...
1
vote
2answers
107 views

Excel kept blank cells as an used cell

I tried to insert rows in excel with OLEDB and the problem is : : I insert a couple of rows at the end of my sheet. : I open my excel document and see my inserted rows. : I delete all the inserted ...
1
vote
0answers
129 views

Time value added to dates when storing in MS Access

I am using a .NET program to read data from a delimited text file and then add the data programmatically to an Access database (.mdb file). The program uses VB.Net with the .NET 3.5 Framework. The ...
1
vote
3answers
193 views

Cannot implicitly convert type 'string' to 'System.Data.CommandType'

I was looking at a web tutorial and the instructor was speaking in language I do not understand and the video was not showing complete length. Can anyone advise me how the line should look like... ...
0
votes
1answer
86 views

OleDb ORDER BY RND() is not Work (C#)

Hello and Thank you for helping. I'm using the following code in my Data set Data Table Query (by Wizard) for sorting by random(ID Column). SELECT ID, Q, A_1, A_2, A_3, A_4, Correct FROM ...
0
votes
1answer
264 views

Reading tables using OleDBConnection

First off, i'm new to VB and this is my first project using OleDBConnection. ok, so i'm trying to the most simple thing using oleDbConnection (i assume). I just want to read data from a table in the ...
0
votes
1answer
130 views

Closing an OLE DB connection opened from within a function

Backed myself in a corner.... Used a piece of code I found on the web and can't figure out how to close this connection. The returned OleDbcommand objCommand remains open after processing. I need to ...
1
vote
3answers
120 views

I am getting an error when I try to update records in my access database

I have a small program that connects to an access database, and what I am trying to do is update(edit) a selected record via an edit form. When I execute my code, I get this error: ...
0
votes
0answers
88 views

Invalid numeric precision/scale when loading Excel 2007 schema to IDataReader to execute bulk update through a SQL table paramter

I'm trying to bulk update from Excel 2007 to SQL Server 2008 R2 DB by means of a stored procedure with a table parameter that is filled by an IDataReader (taken from the Excel schema) but I'm getting ...
1
vote
1answer
597 views

Update an entire row in Excel using OleDB command

I am trying to blankout/clear an entire excel tab. But nothing seems to work I tried the following approach: OleDbConnection connection = new OleDbConnection(connectionString); ...
0
votes
3answers
72 views

SELECT Columns WHERE one column Is Distinct?

Can anyone help me with the query ? I've tried the following but it comes up with an error SELECT Column1, Column2, Column3 FROM Table WHERE [Column1] NOT IN (SELECT [Column1] FROM Table GROUP BY ...
1
vote
2answers
219 views

Insert from text box using OLEDB

I'm getting an error while I'm trying to insert a value from a C# form using OLEDB Connection. strSQL = "INSERT INTO test_table (username,password) " + "VALUES (@user,@pass)"; objCmd = new ...
0
votes
1answer
107 views

Specifying function inside insert statement in OleDbCommand

We have legacy data which is stored in MSSQL database as varchar, even though the data is really binary. In new application we're using OleDbCommand (because we are trying to use common code to access ...
2
votes
3answers
357 views

C# Syntax error when creating a query with OleDbParamater

I am using OleDbParameter to build an OleDbCommand to INSERT a record into MS Access. But I get Syntax Error when I am executing the statement. If anyone can see what is preventing the query ...
0
votes
0answers
175 views

oledbexception object invalid or no longer set in MSAccess 2010

I am creating small Inventory application using Microsoft Access 2010 as data source. My connection string looks like this: <add name="ApplicationServices" ...
0
votes
1answer
278 views

How to Create an Excel File in C#; Office 2007; Win 7 64bit?

Previously my C# app used this command to create an Excel file: try { //SELECT INTO command string cnStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data ...
0
votes
1answer
1k views

Select Columns with Multiple Ranges from Excel using OleDb

My current requirement is I need to select multiple ranges from an excel sheet(DUMMY.xls) in a single query and put it into a DataTable(fooData1) : As you can see from the image above I have columns ...
-1
votes
1answer
282 views

c#, how to Reuse the SqlCommand and OleDbCommand

this is the url i refer to: http://support.microsoft.com/kb/317559 i study their method and had applied them, everything is fine until i include 2_2, error msg: No current query in data reader. I ...
1
vote
2answers
492 views

Weird exception with OLEDB Parameter Insert

Getting a strange error when trying to insert data into an Access database using parameters. the line where I am getting a problem is :- thisCommand.CommandText = "INSERT INTO Events ...
1
vote
3answers
325 views

sql query left join on mysql vs ms-access DB

this query SELECT * FROM tblContracts LEFT JOIN tblPartys ON tblContracts.id = tblPartys.Contract_id INNER JOIN tblAdministrators ON tblContracts.AdministratorID = tblAdministrators.ID ...
1
vote
2answers
760 views

C# OleDBCommand SQL Syntax Error

I have a problem running an insert query via C# OleDbCommand to an Access backend table. The SQL runs fine if you copy it and run it directly in Access, and it works fine for other data prior to ...
0
votes
1answer
963 views

VB .NET OleDbCommand returns Missing semicolon (;) at end of SQL statement

I am using VB .Net to loop through a regex Match and generate a sql statement. I'm creating the sql like this sql = "Insert Into Agencies (Address) Values" While MatchObj.Success sql = sql & ...
0
votes
1answer
208 views

c# OleDbCommand Oveflow

hi guys i have this simple class which should PERFORM A NORMAL INSERT INTO A TABLE BUT ExecuteNonQuery GIVE ME :"OVERFLOW" ERROR , can you tell me why? please thx OleDbCommand cmd = ...
0
votes
1answer
211 views

oledb command not fetching values

through following query i trying to merge three things parEmail , parEmployeeLogin , and parStaffID now in the case one is null i get whole NameValue null . SELECT (parFirstname +' '+ parSurname) AS ...
0
votes
1answer
171 views

Alter Table SQL String - Syntax error

This is a bit of a two part question, firstly the SQL string Dim Addcolumn As New OleDb.OleDbCommand("ALTER TABLE [" & TableName & "] ADD " & X & "", con) X = 0 Do X ...
0
votes
1answer
795 views

Cannot figure out how to fix syntax error (missing operator) in query expression error in C#

I'm having an issue with an error written above and cannot find a exact way to fix it. OleDbDataAdapter dataAdapter = new OleDbDataAdapter("Select count(*) from [contractors$] where " + category + " ...
3
votes
2answers
312 views

Query an Excel file with C#, issue with the numeric cells

I am querrying an Excel file to retrive data record and display them in a monitoring tool, the thing is that whenever I am trying to select a record with its id with the following request, it throws ...
0
votes
1answer
87 views

Is it safe to access OleDBDataReader after Command is closed

In java, you cannot access the ResultSet once the Statement is closed, although many times you get a small amount of fetched data making it appear to be open. But in general it is against the API ...
3
votes
2answers
2k views

Export into excel file without headers c# using Oledb

I'm using OleDB and I want to export my objects into excel table. Each row in the sheet will be one of my objects. The problem is that I don't know how to insert data when there's no column headers in ...
1
vote
1answer
402 views

OleDbAdapter SelectCommand Excel c#

I want to query data from the only one sheet in Excel file. MyCommand = new System.Data.OleDb.OleDbDataAdapter("select * from [Sheet1$] ", MyConnection); This line queries the data from Sheet1. ...
1
vote
0answers
317 views

“COM object that has been separated from its underlying RCW cannot be used” error

I am making a simple university module database system that involves updating and navigating through various modules for various courses. I have 'Next', 'Previous', 'First' and 'Last' buttons to ...
0
votes
2answers
546 views

Updating datetime in access table

I'm trying to insert a datetime value into a datatable and then use the oledbdataadapter's update(datatable) method to load it into my database.. but i keep getting a "Data type mismatch in criteria ...
0
votes
1answer
1k 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
310 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;" + ...
1
vote
2answers
4k views

OleDbConnection - ExecuteNonQuery requires an open and available Connection. The connection's current state is closed

What am I doing wrong here? using System.Data; using System.Data.OleDb; namespace myProject.Account { public class DbManager { private OleDbConnection OpenDbConnection() { ...
1
vote
1answer
214 views

Grouping when working with parameters and OleDbCommand, Crystal reports

I have an sql statement with group by and parameters: string comstring = "SELECT NOVI.GBR as gbrnov, NOVI.AB as abnov, NALOG1.DATA as datanov, ...
0
votes
2answers
360 views

Prevent parallel OLE DB Command execution in SSIS

I have a parallelism issue with my first "advanced" SSIS package. First, here is the end of the package : What does this package : loads data from Excel and performs some operations / ...

1 2