OLE DB (Object Linking and Embedding, Database, sometimes written as OLEDB or OLE-DB) is an API designed by Microsoft for accessing data from a variety of sources in a uniform manner.
-1
votes
2answers
22 views
ExecuteScalar always returns 0
I'm not sure why this is happening. I've seen the same issue online with little help out there to correct it.
When i run my query inside Access i get different values ranging from 0 - 10 but for some ...
-1
votes
0answers
29 views
0
votes
1answer
17 views
Gridview not populating from access db with parameter query - VB
I have a page where I am trying to populate a gridview (gvClockings) on a button click based upon a selection in a dropdownlist (cbLocation) and a from/to date entered into textboxes from a ...
1
vote
0answers
35 views
Different DataTables with one query?
Let's say I have two tables, Customer and Customer_address. To populate one datatable from a query is trivial, but is it possible to populate two different datatables via one join query?
Example:
...
1
vote
2answers
44 views
Syntax error in INSERT INTO Statement when writing to Access
I am trying to write a program where I can write data to an Access DB but I keep getting the error “Syntax error in INSERT INTO statement”.
FirstLast is the name of the table; First and Last are ...
0
votes
1answer
49 views
SQL Delete and Update didn't delete and update
I wrote a set of codes using SQL command to delete and update Access records through a C# program. Here is the set of codes:
Update
OleDbCommand cmd = new OleDbCommand("UPDATE Available SET ...
1
vote
1answer
43 views
Powershell script called from C does not open OleDb Connection
When calling a Powershell script from a C function, my database connection does not open. However when I log on to the server as the user that runs the C program and launch it from a DOS prompt, ...
0
votes
2answers
29 views
OleDb Parameters, null value
I have the following code,
OleDbCommand cmd = new OleDbCommand("SELECT * FROM Users WHERE username = ? AND password = ?",conn);
OleDbParameter p1 = new OleDbParameter();
OleDbParameter ...
0
votes
3answers
71 views
Writing into Excel through C#
This can be a very naive question.
I want to write into into an excel file and each time the insert of data should happen on a new line.
Here is what i have to do in detail:
Create an Excel ...
0
votes
1answer
14 views
Alternate solution of Microsoft.Jet.OLEDB.4.0 provider for x64 bit version
I am currently saving values to access database and i used Microsoft.Jet.OLEDB.4.0 provider for this and i have configure platform mode from any cpu to x86 in my project in visual studio and it works ...
0
votes
1answer
33 views
Using a scalar as a condition in an OLE DB data flow
I am having a problem with a data flow task in an ssis package i am trying to build. The objective of the package is to update tables situated in our local server using a connection to a distant ...
1
vote
3answers
53 views
C# AND ACCESS - Data type mismatch in criteria expression
I've created a code that updates/edits details of a/an computer/electronic product for a C# program connecting to the MS Access. Here are the codes:
OleDbCommand cmd = new OleDbCommand("UPDATE ...
1
vote
4answers
42 views
C# MS-Access SQL INSERT INTO Error
I wrote a set of codes for a C# program to insert a record into the Access database.
Here's the code:
OleDbCommand cmd = new OleDbCommand("INSERT INTO Deployment ([DateTransacted], [ProductType], ...
0
votes
0answers
26 views
Oledb loading blank instead of Excel data in DataGrid
Why am I unable to see any data in my data grid when there is heaps of data in my Excel File.
It's just showing Blank Page instead of data.
My code is
using System;
using System.Data;
using ...
0
votes
1answer
27 views
Importing Excel Data using Oledb
I am using the following code to display the Excel Data into DataGrid using Oledb. But I am getting an error Fill: SelectCommand.Connection property has not been initialized.
Can anybody tell me ...
0
votes
0answers
20 views
Invalid characters for tablename in dbconnection schema
Does anyone have a list of the characters that would be mapped to be "#" in the name of a CSV file when used as a table name in the dbConnection.GetSchema() method?
Or better yet - a pre-existing ...
0
votes
3answers
32 views
syntax error (missing operator) in query expression status = 'Available'
I am working a C# Windows Application Form connecting to MS Access.
I am filling the datagridview with a specific query but this happened
Syntax error (missing operator) in query expression 'Model ...
0
votes
1answer
24 views
Data type mismatch in criteria expression Exception when trying to add a row
I have a problem when I want to save a row in my Access database.
When I want to save it without Herinneringsmail is checked it works, when I check Herinneringsmail it doesn't work.
So the fault is ...
-2
votes
0answers
41 views
Getting the System.Data.OleDb.OleDbException error message but cant get rid of it
private void btninsert_Click(object sender, EventArgs e)
{
OleDbCommand command = new OleDbCommand(); //new instance of Oledb command object
con.Open(); //open database connection
...
0
votes
2answers
49 views
OleDB lock duplication .NET MS Access
We are in the process of migrating away from MS Access to a modern DBMS, but in the mean time I have come across an issue to which I can not find a solution or explanation.
Typically, opening an ...
0
votes
0answers
14 views
Oledb behaves differently for .Net 4.0 and .net Framework Client Profile 4.0
Case1 :
When reading an excel using Oledb in .Net Framework Client Profile, the Oledb reads the data in excel ignoring the formatting that is given in excel
Example: 1.98782637 is actual value but ...
0
votes
2answers
42 views
OLE DB command in visual C# for splitting serial data
I have a problem on how to split data from serial port and then save it to access database to its designated column. i found an example written in VB.net but i cannot find an example code written in ...
0
votes
0answers
46 views
Handling excel times imported from excel using Microsoft.ACE.OLEDB C#
I am importing an excel file using C# and JetOLEDb (Microsoft.ACE.OLEDB for excel 2010 and beyond), and I am using the following code:
var fileName = @"C:\myexcel.xlsx";
var ...
0
votes
0answers
40 views
Oledb Read False Value From Excel Sheet
I am trying to read Excel sheet which is already opened in window explorer using oledbReader with following code
System.Data.OleDb.OleDbConnection mCon;
mCon.ConnectionString = ...
0
votes
1answer
43 views
c# delete from dbf where x=1 AND y=2
I need to delete rows from dbf file using OLEDB.
Why this query doesn't work? Got error from database driver.
m_query1 = "DELETE FROM tablename WHERE N_U='VS1' AND QMONTH=1";
But this works fine:
...
0
votes
1answer
52 views
Column does not belong to table (Multi word query)
I have this problem when I try to read a query with multiple words.
Basically after selecting item from combo box I put string value to query and exetute it.
It works fine when I select 1 word items ...
0
votes
0answers
49 views
Autocad .net framework 32 bits selection
Gents,
I was wondering if there is any way to configure the autocad.exe.config file so it works with the 32 bits version of .net framework.
I'm developing an application for autocad 2008 32 bits in a ...
0
votes
1answer
19 views
The INSERT INTO statement contains the following unknown field name: 'a'. Make sure you have typed the name correctly, and try the operation again
// e,g, I want to insert 3 columns in 1st row and 10 columns in rest of the rows
//I am Creating excel file with sheet name as MySheet
// then updating value in 1st row, 1st cell of header as ...
0
votes
1answer
41 views
Cannot connect to dbf file
I'm trying to connect to to a foxpro table (.dbf) from a test vb.net form.
I recieve an OleDbException with the message "Cannot open file c:\emp\emptbl.dbf"
Have tried with both of the following ...
-1
votes
2answers
60 views
Error - No value given for one or more required parameters
I have a problem working on my project.
I'm trying to read a data from an Excel file. It works fine when I'm trying to select rows which are greater than Col1Value but after I add AND Gender = " + ...
3
votes
2answers
73 views
Excel Querytable Refresh only works once
I am adding a ListObject to an Excel 2007 Workbook using VBA. The ListObject is to have a QueryTable behind it, linking to an Access database. The code looks like this:
Dim l As ListObject
Dim c ...
0
votes
1answer
40 views
Using VB to retrieve the sum of a column of salaries from an Access database
I have been sitting here with five other guys trying out how to total values from a column. We have scoured Google, but none of the code we've found works.
Here is my form:
Here is the code I ...
0
votes
0answers
29 views
Parameterized oracle query using oledb
Just wanted to verify if this is the correct syntax for performing a parameterized query in oracle using oledb:
OleDbCommand command = new OleDbCommand("SELECT DocumentName FROM Documents WHERE DocID ...
0
votes
1answer
52 views
How can I export a DataTable to excel using OLEDB or ODBC adapter in c#?
Is it possible to export a DataTable object of .net to an excel sheet using an OLEDB or ODBC adapter?
If yes, how?
Selina
0
votes
2answers
38 views
DBF number Formating C#
I create DBF File with c# and oledb , the files are correcte and are filled perfectelly , no problem at all. I just a very tiny issue with it , it's that when i open those dbf files, all int values ...
0
votes
1answer
84 views
Issue with importing .csv using MS Jet OLEDB
I'm importing a CSV file to SQL for an ASP .NET application. I am able to import the .csv, however one column contains null values if there is anything other than numbers in it.
This row imports ...
0
votes
1answer
54 views
Double quotes with Sql Update
I'm trying to update a database with OleDb and .Net4.5.
My updates are working good , even if i use simple quote on a filed, but, when i input a double quote on a field, oledb raise an exception ...
0
votes
1answer
47 views
Sql Parametrized syntax error with VFP OleDb
I'm trying to make an SQL parametrized update command for a DBF File ( Visual Fox Pro )
I don't know why, but i have a "syntax error" on the "DbCommand.ExecuteNonQuery();".
The exception error ...
0
votes
3answers
64 views
Syntax Error on a Sql Parametrized update command - c#
It's my first SQL Parametrized update command in c# and i have a syntax error when i exectued my update.
Here is my code :
string maRequete = "UPDATE " + strNomTable + " set "
+ "evetype = ...
0
votes
1answer
50 views
Sql Parameters and No command text is defined for the command object error
I would like to create my first SQL Parameters command with c#, and i have an error : "No command text is defined for the commande object"
Here is my code :
string maRequete = "UPDATE " + ...
0
votes
1answer
39 views
update query in access db having text datatype
strSQL = @"UPDATE UserLogin
SET UserPassword= @paramUserPassword
WHERE UserId= @paramUserId";
objOleDbCommand = new OleDbCommand(strSQL, ...
-1
votes
2answers
47 views
Insert command error in OleDB
A little noob says HY.
I have a small problem with a homework project in Microsoft Visual Studio 2010.
Also, i work in C#.
I must do a site for selling products and i have an Access database.
So, the ...
0
votes
2answers
75 views
access database, user level protection and vb.net
Dim connectionString As String = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source=C:\Users\itweb\Documents\Visual Studio 2010\WebSites\notitiae\databases\notitiae.accdb"
Dim dbConnection As ...
1
vote
2answers
68 views
Payroll System - 'clock out' functionality
I am working on designing a payroll system using access database as back end.
Currently, I am facing problems implementing a 'clock out' functionality.
The 'clock in' button inserts the time in the ...
-4
votes
3answers
57 views
Select MAX INT value of TEXT column
UserID UserName Password
1 abc 123
10 xyz 456
3 mno 254
SELECT MAX(UserId) AS UserId FROM UserLogin
When I ...
0
votes
2answers
63 views
OLEDB FOXPRO LOCK RECORD
how to lock a foxpro table that has sono='12345' by OLEDB instead of locking whole table? using rlock(), i can lock records by number but no idea how to lock records by using filter.
here is how i ...
1
vote
0answers
32 views
OleDB Ace - Can it read raw cell values rather than formatted values?
I'm reading an Excel spreadsheet like so:
If SetDbConnect( _
"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & filePath & _
";Extended Properties=""Excel ...
0
votes
0answers
9 views
Could not find installable ISAM in Acess database when connect
connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\Projects\XDAQ Docs\Database\DB.mdb;Database Password=$#Q#$;";
Could not find installable ISAM in Acess database when connect,.
...
0
votes
2answers
76 views
Extract data with an OLE DB faster
Hi everyone I'm trying to extract a lot of records from a lot of joined tables and views using SSIS (OLE DB SOURCE) but it takes a huge time! the problem is due to the query because when I parsed it ...
0
votes
1answer
35 views
getting this error: Microsoft OLE DB Provider for ODBC Drivers: [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch
We have a PHP script on our server that generates a batch file that is set to run at a specific time of day in Task Scheduler. The batch file calls a vbs file that contacts several computers through ...




