1
vote
1answer
11 views
Visual FoxPro and VS2008 do not show all DBF records. A seperate build does.
Hi,
I am working on a project in Visual Studio 2008 (in vb.net). The app needs to import data from a Visual FoxPro database (dbc file). Do not ask why FoxPro. It needs to be vfp a …
0
votes
0answers
15 views
Sybase ASE character set with OLEDB .NET
Using the .NET Framework 2.0 on a computer with the LCID set to 1033, I am connecting to a Sybase ASE 12.5.4 server which has its default character set to sjis.
When I retrieve f …
2
votes
1answer
36 views
Custom LINQ provider for Excel spreadsheets?
Does anyone know a good custom LINQ provider to query data from Excel spreadsheets?
0
votes
1answer
27 views
Whats missing using OleDbDataAdapter.Update to update Access.mdb file?
With the following code below I have managed to open an Access.mpd database and read rows from the table Saved.
However when I try to change data or add new rows I works fine as l …
0
votes
2answers
34 views
Problem In get dates between 2 date (vb.net | OLE)
Hello ,,,
I have an data base (.mdb) and it has a column with dates (dd/mm/yy) , some one give me a code to get all the dates in database between 2 dates , the code was :
Select …
0
votes
1answer
60 views
The ‘Microsoft.Jet.OLEDB.4.0’ provider is not registered on the local machine
Can someone help me with this error? When I try to open a connection to an mdb, I get "The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine" error. How can …
0
votes
0answers
16 views
Data type mismatch in criteria expression From Excel file through OLEDB
I am processing an uploaded file through a ASP.NET page. I am using the following connection string:
string connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +
…
1
vote
4answers
51 views
Accessing Excel 2007 file format with OLEDB
I'm currently trying to access an excel 2007 file on a server that doesn't contain Microsoft Office on it. My connectionstring is something like this.
String connString = "Prov …
0
votes
2answers
26 views
OLEDB CASE WHEN in SELECT Query [closed]
how can use case when statement with oledb to excel file using vb.net 2.0
like select prodid, case prodid when 1 then 'fine' when 2 then 'good' end
1
vote
4answers
88 views
Update or Delete a Line from CSV using C#
hi,
can anyone please help me with this query.
I have a CSV file which is used by a unix application as a config file.
The file has no header and the first column is unique.
Thi …
2
votes
6answers
100 views
C# and Excel files
I need to create a program that can read from/write to an Excel file. Should I use OleDB or use an Excel Object? What are the advantages of one over another, and where can I read u …
0
votes
1answer
29 views
Search all dates before a specific date in a database (VB.NET|OLE)
Hello,
I have a database (MDB, Access) and I connect it to my program using an OLE object,
now I have in the db a column filled with dates (ddmmyy),
I want to search and view (in …
0
votes
1answer
44 views
C# OLE DB: How can I reorder columns of database table by using a dataset?
I know this might be a bit awkward but I am trying to modify the order of certain columns in a MS Access database in C# with OLE DB. How can I commit a certain change in the order …
3
votes
6answers
84 views
Microsoft Access required for C# database access on end-user machines?
Silly question, perhaps.
I've developed an app on my machine that uses a Microsoft Access database (.mdb) to access certain information and populate a table with monitoring data u …
0
votes
3answers
52 views
Leading Zero is dropped when converting a csv file to data table using oledb
I have a csv file from which I have to populate different tables in database
I am using Microsoft.Jet.OleDb.4.0 to convert csv file to data table from where I proceed forward
the …
