Tagged Questions
The oledbdataadapter tag has no wiki summary.
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 ...
1
vote
1answer
185 views
OleDbDataAdapter.Update() with OleDbCommandBuilder
I am hitting an Oracle database using C# and OleDb, I have sucessfully pulled data from a query but I am unable to update the database using OleDbAdapter.Update(), my update code is below. ("Adapter" ...
1
vote
3answers
189 views
Using an OleDbDataAdapter on a background thread causes my UI to not update correctly?
I have an app where users can select an Excel file, that excel file is read using an OleDbDataAdapter on another thread, and once it is finished being read it updates the CanExecute property of a ...
1
vote
2answers
858 views
DataAdapter.Fill(Dataset)
i try to get some Data from a Access Database via OleDB in a DataSet.
But the DataSet is empty after the Fill() method. The same statement works and return 1 row when i trigger them manually in D*.
...
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
2answers
60 views
OleDbDataAdapter: cannot update database
I've been working on this since yesterday and I just can't update my database.
There are 3 tables. Here is a piece of code of one of WinForms. It loads data and display but after changing sth manually ...
0
votes
0answers
74 views
External Table is not in Expected Format
I am trying to read data from excel file stored in excel 2003. I did some research and found 1 more property HDR to be added. I tried couple of times but still getting same error. I have some ...
0
votes
1answer
40 views
deleting a record using OleDbAdapter
am a beginner in C#. am trying to create a website
i have a problem to give a delete option. there is no error showing. But the recrd is not getting deleted
please help
protected void ...
0
votes
1answer
309 views
Import Excel trough OleDbDataAdapter in C# With changing Column names
Hello well i try to import a Excel document into my DataGridView in C#.
So far it worked but there is a Column with Data in it i need to 'sort'.
If this was simple i would do "WHERE test > 0" in the ...
0
votes
2answers
97 views
How to optimize this simple but complex looking implementation in VB.Net?
Aim to achieve :
Want to dump a fetched table to a excel sheet.
My implementation :
Imports System.Data.OleDb
Private Sub getRawDataNextMonth()
Dim sheetName As String = "RawData"
Dim ...
0
votes
1answer
501 views
C# Typed DataSets: OleDBDataAdapter use the column names from the Typed DataSet and not ExcelSheet
I'm using VS 2010 with C# for a Windows Form application.
I need to load my data from the Excel sheet onto a DataSet. I created the DataSet using the DataSet designer and I manually added the tables ...
0
votes
1answer
285 views
Reading columns using WHERE clause on MS Access passing combobox textvalue
I am working on a windows application written in C# and using MS Access 2003 as my database. I am facing strange problem, when I write the query
SELECT * FROM mytable WHERE ...
0
votes
2answers
84 views
OleDbDataAdapter: Exist table?
I have a program in c# where I made a connection to a database to work with .xls.
The problem is that I do a "SELECT * FROM [" +sheet + "$]" and if the sheet doesnt exists, the program crash, and i ...
0
votes
3answers
361 views
OleDbCommandBuilder OleDbDataAdapter Problem VB.Net
I have a field in a 2003 access database named first. I run the data adapter update command, gives me "Syntax error in UPDATE statement." I change the field name to firstName, try the update again, ...
0
votes
1answer
504 views
Excel to Grid view issues using OleDbDataAdapter
I am creating a Windows Forms Application using Visual Studio 2010.
I populate data to a DataGridView from an excel file using OleDbDataAdapter method.
Here is my code
dataGridView1.DataSource = ...
0
votes
4answers
1k views
OleDbDataAdapter and column casting while importing Excel to ASP.NET
I'm importing an excel using c#. But CustomerOrderNR column contains these kind values:
20283
20213
20625
50749-50
30687
31975
82253
But when I execute these codes:
string QTam = @"SELECT ...
0
votes
1answer
535 views
in C# OleDbDataAdapter.fill method not giving any data or error
I am using a data adapter to pull data from an access database (see below code). When I run the SQL in the Access database I get the expected data. However when I step through the code the fill method ...
0
votes
1answer
2k views
Quirky SELECT from Excel file via OleDbDataAdapter method (C#)
I have got an Excel file in this form :
Column 1 Column 2 Column 3
data1 data2
data1 data2
data1 data2
data1 data2
data1 data2 data3
...
0
votes
2answers
587 views
manipulate data before importing from excel to dataset
I have a couple of columns of data in an excel sheet which I have to import to my application.
I do this using -
string strConn;
OleDbDataAdapter oledaExcelInfo;
strConn = ...
0
votes
2answers
2k views
Use OleDbDataAdapter to insert into an Access db
I would like to insert some data into an Access Database.
DataTable dt = new DataTable();
String sql = string.Format("SELECT * FROM {0} where 1=0; ", tmap.SqlTableName);
string con = ...