Tagged Questions
The oledbcommand tag has no wiki summary.
8
votes
3answers
372 views
Why the “Non” in “ExecuteNonQuery”?
I know this is not a hell of an useful question but I can't help being bugged by it.
So,
Why said method (in *Command classes) is called
ExecuteNonQuery instead of ExecuteQuery?
Aren't those SQL ...
3
votes
1answer
4k views
How to use SQL user defined functions in .NET?
I created a scalar function in the DB
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[fn_GetUserId_Username]
(
@Username varchar(32)
)
RETURNS int
AS
BEGIN
...
2
votes
3answers
463 views
Error in executing an OleDbCommand.. “Must declare the scalar variable ”@MaxID“.”
private void AddValue(string strValue)
{
//get the maximum id for Lists first
int MaxID = DataOperations.ReturnMaxIDInATable("Lists", connString);
int iSqlStatus = 0;
string ...
2
votes
1answer
1k views
Update a row in oracle using OLEDB command(SSIS)
I am trying to update some rows in an oracle Database, using an OLEDB Command
but whenever i try specifying the Sql Command this is what i get
An OLEDB record is available. Source: "OraOLEDB" ...
2
votes
3answers
320 views
Ms Access SQL Any reason why LIKE does not work?
Any reason why
SELECT * FROM MyTable WHERE [_Items] LIKE '*SPI*'
does not return any rows with OleDbAdapter.Fill(DataSet) or OleDbCommand.ExecuteReader()?
When I ran the same SQL in MS Access ...
2
votes
1answer
786 views
Stored Proc returns a Cursor, how to handle this using OLEDB in C#
I am using OLEDB driver to call a Stored Procedure in Oracle DB.
The Stored Proc returns a cursor as the output.
I am able to call this Stored Proc using Oracle Data Source ...
1
vote
1answer
71 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,
...
1
vote
1answer
171 views
Syntax error in INSERT INTO statement for MS Access
I have a SQL Insert Into command that works in normal conditions. That means if I fill in every textbox, the data is send to the db (Acces db).
But when I 'forget' 1 textbox, I receive a "Syntax ...
1
vote
1answer
186 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
2answers
162 views
Excutereader is very slow when taking data by oledbcommand object
I am fetching data from dBase4 database by using object of oledbcommand and load it into datatable. but it is taking too much time to fetch 160 records around 5-10 minutes.
Please Help me Out.
Code:
...
1
vote
2answers
743 views
Importing from Excel - Header is not on row 1
Is there some simple way I am missing to import an Excel worksheet into a datatable using an OleDBConnection and change what row the header is located on? I have HDR=YES in my connection string and ...
1
vote
1answer
254 views
Updating tables with column names containing @ symbols using OleDbCommandBuilder in C#
Greetings great SO comrades;
I'm trying to use this code to make changes to a SQL Server database:
adapter = new OleDbDataAdapter(
Db.GetRecordSql(table.Name, recordId), Db.Connection);
...
1
vote
1answer
562 views
SSIS OLE using DBCommand to call tsql function
I'm importing Oracle data into SQL Server. After my OLE DB Source that runs a query to grab the data to process, I'm trying to call a TSQL function on a field value somehow...
I have an SSIS data ...
1
vote
1answer
496 views
how to insert Textfield value to database in C# for the following code
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.OleDb;
using ...
1
vote
0answers
222 views
How to get rows count of rowset in OLE DB
How is possible to get rows count of rowset in OLE DB? I have filled RowSet using CCommand and CAccessor and now I dont know how to get rows count.
I can go through all rows using MoveNext() but it ...
1
vote
3answers
255 views
Opening an Excel file in c#
So there are a lot of questions regarding this method on SO, but none seem to answer my question. I firstly had an issue with the connectionstring (although it seems to work in other areas of my code ...
1
vote
3answers
1k views
Execute multiple queries
I am using OleDB for executing my queries in C#,
Is there any way I can execute multiple queries in one command statement?
I tried to separate them with semi-colon (;) but it gives error "Characters ...
1
vote
1answer
223 views
OleDbParameters and Parameter Names
I have an SQL statement that I'm executing through OleDb, the statement is something like this:
INSERT INTO mytable (name, dept) VALUES (@name, @dept);
I'm adding parameters to the OleDbCommand ...
1
vote
5answers
188 views
OleDbCommand can't excute this command, Why?
I create a table named "PathTable" in a MS-Access DB.
The table is like this:
------------------------------
| IP | Input | Output |
------------------------------
| 127.0.0.1 | XXXXX | YYYYYY ...
1
vote
4answers
287 views
Why am I getting this error when trying to update an Access Database file (.mdb) with a Datatable:
I've been working on my issue for 30 hours. Each time I fix one thing a new error arises. All I want to do is take a DataTables from memory and simply update an Access .MDB file. Here is my code:
...
1
vote
4answers
23k views
SSIS return value of Stored Procedure within an OLE DB Command
I am migrating data that has to be inserted using stored procedures which already exist. The stored procedures have parameters and a return value (from a select statement) of an id for the row ...
0
votes
1answer
30 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
37 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
2answers
188 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()
{
...
0
votes
2answers
62 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 / ...
0
votes
2answers
76 views
How to use the OleDbDataAdapter Fill method to only add a determined number of rows?
I want to add rows in a DataSet, but only a specific number of rows (in order to avoid the "Too many fields defined." exception). This is what I have tried so far:
OleDbCommand command = new ...
0
votes
0answers
90 views
Unknown error reading Excel file with blank rows using WHERE clause
So clients upload Excel files to us and we have a windows service that periodically grabs new files and bulk-loads the contents to our SQL server like so:
string excelConnectionString = ...
0
votes
0answers
24 views
Unwanted message pumping inside OleDbCommand.ExecuteReader
I have a rather complicated application (that is refactoring it is not an option) in which OnPaint often involves a lot of background work, including database access.
When I load a file (of my program ...
0
votes
2answers
188 views
Syntax error in UPDATE statement Visual Studio C#.net
I've been trying to figure out the right syntax for the UPDATE statement when coding in C#.net and using OleDbCommand. I feel like what I have is correct, but it definitely isn't because I still am ...
0
votes
1answer
75 views
Is order of parameters for database Command object really important?
I was debugging a database operation code and I found that proper UPDATE was never happening though the code never failed as such. This is the code:
condb.Open();
OleDbCommand dbcom ...
0
votes
1answer
95 views
DbCommandBuilder not working as expected
I want to fetch data from a database table modify it and update it without being dependent on the database provider and the database structure, because it will be part of a library.
My first attempt ...
0
votes
1answer
183 views
How to check if a field value is a certain charachter length in a oledb sql select command?
I am reading from an access database using a C# OleDB connection. I don't want any results which are less than three characters in length. I am getting an "Invalid pattern string" error with my ...
0
votes
1answer
567 views
MS-Access, OleDbCommand, Getting a “No value given for one or more required parameters”
I'm having trouble because I'm very rusty with using OleDb with Microsoft access. I add parameters to the command, and execute the query and I get "No value given for one or more required ...
0
votes
2answers
135 views
How to save .xls changes from Excel Function after updating/modifying it using OleDbCommands?
I have an .xls file that I am allowing a user to make changes to by entering values in TextBoxs within a GridView. In the excel file, there is a column (D) that does a basic (=C4-B4) function. The ...
0
votes
0answers
223 views
Very Slow while Fetching Data From .DBF file by using OLEDBCommand Object excutereader from NetworkShare
I am fetching data from dBase4 database by using object of oledbcommand from Newtwork share and load it into datatable. but it is taking too much time to fetch 160 records around 5-10 minutes. I ...
0
votes
2answers
77 views
How to add column named Zone to OleDb?
I assume that "Zone" is a reserved keyword, so can I put it in quotes or something to make this work? My DB connection is good. I've added columns with different names.
String addZone = ALTER ...
0
votes
0answers
273 views
OleDbCommandBuilder exception on certain SELECT query
I'm using an OleDbDataAdapter to select, update and delete single rows of data via a form and have recently run into a bug I didn't know existed.
My application presents the user with a couple of ...
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
3answers
323 views
Syntax error in INSERT INTO statement
conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\\database.mdb");
conn.Open();
com = new OleDbCommand(@"insert into group
...
0
votes
1answer
221 views
Data is not saved in MS Access database
I have a visual C# project and i'm trying to insert data in a MS Access Database when i press a button. Here is the code:
private void button1_Click(object sender, EventArgs e)
{
...
0
votes
4answers
1k views
Conversion from string to type 'Double' is not valid
I am getting the following error while running a select statement (using OleDbCommand).
My query is
SELECT CME
FROM Personnel
WHERE CME = '11349D'
If objOleDbCom.ExecuteScalar() > 0 Then
...
0
votes
2answers
281 views
Does the Microsoft SQL Server native client support IDBAsynchNotify?
I'm working on some OLE DB code that runs queries on MS SQL Server via ICommand::Execute. I'm converting this code to operate asynchronously by setting the DBPROPVAL_ASYNCH_INITIALIZE property on the ...
0
votes
2answers
727 views
Retrieve SqlCommand/OleDbCommand query after inserting parameters?
Is there any way to access the prepared statement as sent to the SQL server?
Dim params(1) As OleDb.OleDbParameter
params(0) = New OleDb.OleDbParameter("@ID", ...
0
votes
2answers
660 views
Alias parameters in SSIS
I am using an OLE DB command in SSIS for which the SQL command looks like this:
UPDATE DBO.CLIENT
SET
TimeZoneID = ?,
DaylightSavingTime = ?,
ModifiedBy = ?,
MicrosPropertyID = ?,
...
0
votes
2answers
4k views
ssis : how to insert into oledb destination from oledb command
Hi I'm trying to insert in a ole db destination the result of a sp for each record in an ole db source,
the sp returns a record set
I have found this how to call a stored procedure in SSIS
but i ...
0
votes
1answer
815 views
Custom writing OleDbCommand commands
I have (another) question about writing OleDbCommand's. I have a complex select command (includes several left joins) and OleDbCommandBuilder is unable to generate update commands for me.
I can't ...
0
votes
3answers
5k views
How do I structure an OleDbCommand Query so that I can take Tables from one .MDB, and replace them in another .MDB
I am trying to take tables from one Access Database File, add them to another Access Database file with the exact same structure but with different information. I need to overwrite any existing ...