Jet is the SQL database engine used by Microsoft Windows. It is also used by Microsoft Access. For Java Emitter Templates, see `java-emitter-templates` and `eclipse-jet`
0
votes
1answer
60 views
Import Excel 2013 to vs, Microsoft ACE.OLEDB.12.0 is not registered on the local Machine
Creating a form application in vs 2012. I have office 2013 installed, win 8 64 bit. I get the above error for the below piece of code.
public void SetConnection(string text1, string text2, string ...
0
votes
1answer
20 views
MS Access/JET “Join Expression Not Supported” Any Way to Fix This Query?
MY CODE (Im using MS Access 2000 with JET Database engine)
SELECT Members.First_Name + ' ' + Members.Last_Name AS Member,
iif(NULL,Friends.My_E_Mail, Friends.Friend_E_Mail) AS E_Mail,
...
0
votes
1answer
43 views
“Union Operation not allowed in sub query” is there a way to fix this in one single query?
This Query Dose NOT work in Access 2000
SELECT (Members.First_Name + " " + Members.Last_Name)AS Member,
(SELECT Friend_E_Mail,
FROM Friends,Members WHERE My_E_Mail = ? and Friend_E_Mail <> ?
...
1
vote
2answers
73 views
MS-Access Including all days in a Date Range Query
Access 2010 here.
Back with another puzzler. I have this query:
SELECT DischargeDatabase.Date, Avg([pH]) AS [pH Value], Avg([Temperature]) AS [Temperature (°C)], Avg([ZincLevel]) AS [Zinc (mg/l)], ...
0
votes
3answers
43 views
Create a table with integer or numeric(4.0) in dBase width Jet.4
I want to create a table (.DBF file) with an Integer(4) field using Microsoft Jet dBase Provider. There is my code :
Dim conn As New OleDb.OleDbConnection
Dim comm As New OleDb.OleDbCommand
...
1
vote
1answer
89 views
Cannot get ADO connection working on a classic ASP website running in IIS Express on Windows 7 64 bit
I have a legacy classic ASP website that I need to do some maintenance work on. My development machine is running Windows 7 64 bit, Visual Studio 2012 and IIS Express 8.0.
The ASP app is backed by a ...
0
votes
1answer
34 views
Replace values in table columns with values from another table
I need to migrate some tables to a new schema in a Microsoft Access database through the Microsoft JET DB engine using SQL. Effectively there is an ID column in a master table that serves as a foreign ...
0
votes
0answers
28 views
OleDb truncates Result of Left Function of Memo field to 255 Chars
I have a MS Access 2003 Database with one table and a memo field. When i create a query which truncates the field content by the Left function of Access the result in MS Access looks fine.
SELECT ...
2
votes
1answer
50 views
Why query returns different results with JET DAO compared to ACE DAO?
In a VB6 program accessing an MDB file, the following SQL query is being executed:
> Select * FROM [table1] WHERE ([type] = 1 OR [type] = 2 OR [type] = 6)
> AND ([notes] = Null OR [notes] = ...
0
votes
1answer
53 views
How to install Jet OLEDB provider for .NET apps?
How is the latest JET OLEDB provider for .NET apps meant to be installed?
This link says that the Microsoft Access Database Engine is not to be installed in order to install the JET OLEDB provider.
...
0
votes
2answers
50 views
Database driver for Microsoft JET Database Engine
I'm currently looking to write an importer in my Java program to import data from a file which contains a JET database, but so far searching for a JDBC driver for this format (or just another Java ...
1
vote
2answers
108 views
Visual Studio VB.NET Database Explorer “Unspecified Error”
I have been searching all day for a solution to this problem, but can not find one that works. Basically, I have been connecting to an Access Database through Visual Studio for some time now (there is ...
0
votes
0answers
24 views
Importing csv using Jet engine query and java string is not imported properly
Im using the code below to import csv files into Access database. The problem is that when a string has its first character as space e.g." Apple" the insert ignores the space and inserts only "Apple". ...
1
vote
1answer
115 views
Information about syntax of ADO recordset filter queries
I spent much time trying to figure out how to extract date part in ado recordset filter expressions connecting to Jet engine working with an mdb file. The problem is that many things mentioned about ...
0
votes
1answer
92 views
SSIS Package Fails After Move to 64-bit
We've got a a series of SQL Server Integration Services packages that copy data from a few MS Access databases into a SQL Server 2008 database. There is one parent package that calls the various ...
0
votes
1answer
84 views
using InStrRev() and similar functions in Jet/ACE queries outside of Access
Hia, I'm struggling a bit while forming some SQL queries.
Currently I'm using:
InStrRev(TABLE.[_URL],"/")+1) AS OUTPUT
Given an input of a URL - I want to extract the last part eg:
...
1
vote
0answers
372 views
Open a Standard Jet DB 4.0 file (*.vmd)
I downloaded a database file with the extension "VMD".
Now I'm looking for a windows software which can open this file, so that i can see all the included tables to (later) export some of them info ...
0
votes
0answers
283 views
excel ole db connection string error, “initialization of the data source failed”
I am attempting to import data from an access database using the following connection string:
"Provider=Microsoft.Jet.OLEDB.4.0;Password="";User ID=Admin;Data Source="C:\Temp\Dextech ...
0
votes
0answers
30 views
Reorder and hide columns in TRANSFORM query
Here is my query:
TRANSFORM Max([Src].[Value])
select
[Results].[Id],
[Results].[Name],
[Results].[OfferPrice],
[Results].[RegPrice],
[Results].[Image],
[Results].[URL]
...
0
votes
2answers
202 views
Accessing MDB through VBS
I am trying to update an MDB using a VBS script. On one machine it works OK (WinXP and Office 2003) but on the other (Win7 64 bits VM with Office 2010) I get the error "ActiveX Component can't create ...
0
votes
2answers
153 views
How does JET OLEDB Parameters compare strings with text field in and Access DB
I have the following update query in C# using a JET OLEDB connection, connecting to a ms access DB file. The query fails to change the fields, it runs correctly but just 0 rows changed.
I think the ...
1
vote
1answer
77 views
Code not executing properly but no error appears to be raised
On 2 occasions recently, code essentially the same as below failed to execute properly.
During the same timeframe it would also has executed normally hundreds of times.
On the 2 occasions slip was ...
1
vote
2answers
573 views
Import excel sheet using jet.oledb.4.0 , setting first row as column name
i am trying to import an excel file into a datatable in using Jet.Oledb. Here is my code:
string sourceConstr = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + ...
0
votes
1answer
77 views
CurrentDB.Execute Active Record Reference
Access 2010 here.
There are two tables in a 1-to-1 relationship (MainDB, Parts) and a command from the form (MainForm) that operates on the "Parts" table:
CurrentDb.Execute "DELETE * FROM Parts ...
0
votes
1answer
102 views
Inactivity causes data loss in VB6 Jet.OLEDB.4.0
I have a VB6 application that uses a mdb file with Jet.OLEDB.4.0. The application does a good job of saving and retrieving data unless I let it set idle with an open recordset for half an hour or so.
...
0
votes
2answers
591 views
OleDB connection to excel file fails ONLY in production
I have a VB application using .NET 3.5 that allows users to upload an Excel file. The application then reads from this file and inserts its contents into a database.
The problem is that the read ...
0
votes
1answer
165 views
How can I manually define column types in OLEDB/JET DataTable?
I am importing data from an Excel spreadsheet to a VB.NET DataTable. This Excel spreadsheet has a lot of garbage data in the first 18 rows, including a lot of empty cells. I ultimately remove these ...
1
vote
0answers
144 views
Error 3078 over WAN
In a VB6 app accessing a MDB database file over a WAN there are occasionally 3078 errors due to network connectivity issues:
Error 3078: The Microsoft Jet database engine cannot find the input
...
0
votes
1answer
161 views
Reading Excel numbered range with oleDb
I am trying to select everything in the B - E columns from row 4 onwards, where row 4 are the headers. My sheet name is " PRODUCTION_Insurer Index".
My research so far has hinted that because my ...
0
votes
3answers
454 views
Read excel file in C# by avoiding “Microsoft .Jet.OLEDB.4.0”
I have been using the method to import excel data to my WPF application as mentioned in
Import Excel file into Microsoft SQL Server using C#
and
Reading Excel files from C#
it works great on debug ...
0
votes
0answers
33 views
Seeking Jet wrapper UDF's for SQL Server
Does anyone have a set of SQL Server UDF's that wrap the JET/VB-like functions? For example, a wrapper for getdate() that would be referenced as "Now". I'd actually pay for a full set of such ...
0
votes
1answer
65 views
How can I find where a program stores databases on my system? [closed]
I'm currently developing a plugin for an archaic inventory system that utilizes what appears to be microsoft access databases, Microsoft Jet DB 4.0, paradox databases, and ACE databases.
The program ...
0
votes
1answer
94 views
Defining an SQL query from various input textboxes
I wanted to know what would be considered "best practice" in terms of defining an SQL query based on input from various textboxes on a web page.
Per say, lets say if you have 8 input textboxes on a ...
1
vote
2answers
266 views
Get max(date) from table
Hopefully this is a simple one. I have a table of sent messages and a customer table. I am trying to get the date of the last message sent to a customer, but I am having a nightmare with it and can't ...
0
votes
0answers
38 views
Update Hidden Spreadsheet using Jet 4.0
I am trying to update a range of cells of an existing HIDDEN sheet in a .xls file using the following syntax:
UPDATE [MetaData$A1:I1] SET F1='Value1', F2='Value2', F3='Value3', F4='Value4', ...
1
vote
1answer
393 views
Updating a record in JET (Access) using VB.NET
I am trying to update a record in Access through VB.NET. This is my code thus far. The objective is to search a barcode, it returns the data associated with it and the user is able to change the data ...
0
votes
2answers
151 views
SQL Statement returns wrong values
I tried to get the the last and next row of my table by using this query:
SELECT TOP 1 Nummer FROM Empfänger WHERE Nummer < 4748 ORDER BY Nummer DESC
UNION
SELECT TOP 2 Nummer FROM Empfänger ...
2
votes
2answers
288 views
do csv file names need a specific pattern while being read with Microsoft.Jet.OLEDB.4.0 provider?
I've tried using the OleDb interfaces to read a CSV file, but I noticed something weird.
var filePath = @"C:\set2\orders3_1.csv";
var fileDirPath = Path.GetDirectoryName(filePath);
SqlBulkCopy bcp = ...
1
vote
2answers
149 views
Jet (MS Access) Get seed and increment of COUNTER column
Does anyone know how to retrieve the seed and increment of an auto increment field (aka COUNTER, or "AutoNumber" in the Access UI) in a Jet (MS Access) database?
I have enumerated all properties of ...
1
vote
1answer
140 views
Decypting an MS-Access 2003 Backend?
From what I've read the encryption on an MS-Access 2003 database (*.mdb) is pretty weak.
I'm working with a legacy JET/MS-Access 2003 database which I have frontend and odbc access to, and I'm ...
0
votes
1answer
434 views
Microsoft Jet database engine could not find the object for xls but the same sheet as xlsx works fine
I have a sheet name "Test (testing)". I can access this sheet just fine when I use a xlsx workbook but when the workbook is in the xls format I get the following error:
...
0
votes
2answers
1k views
How can I run sql query on excel table
I want to run sql query on an excel table:
select * from Range[A1:Z50]
I managed to do that. Sadly I discovered that the solution I found was based on Jet:
ConnectionString ...
0
votes
0answers
146 views
How to solve “OleDbException was caught Unspecified error” error?
I am getting this error trying to implement this function (reading csv to datatable) in a existing website. The website was once .net 2 but now running on .net 4. The error seems from connection.open ...
0
votes
2answers
229 views
Reading pivot table with c#
I am trying to read an excel-sheet containing a pivot table generated by macros with the following connection string:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=path;
Extended Properties="Excel ...
1
vote
1answer
188 views
Showplan.out in Windows 7 with MS-Access 2003 and multiple versions of Office installed?
I was looking for a way to log queries from a 3rd party proprietary ms-access database application that contains a front-end and a backend.
The database runs in MS-Access 2003. I read and followed ...
1
vote
3answers
125 views
How to you do a select statement with an order by when you have a mix of numbers and strings?
The Column is a string, and the data inside of it can be
10
2
3
3.1
3.2
a10
a11
1
a12.2
a12.3
wanting the results back as:
1
2
3
3.1
3.2
10
a10
a11
a12.2
a12.3
This would be ASP/VBScript with a ...
0
votes
1answer
1k views
Microsoft.Jet.OLEDB.4.0 - Provider can not be found or it may not be installed
I have created an Excel Macro in which I have used Microsoft.Jet.OLEDB.4.0 to fire query on Excel work sheets.
It's working perfect on my machine but my client is facing issue with it. (see the ...
1
vote
1answer
183 views
Find the length of an SQL OleDbDataReader
I have an SQL OleDbDataReader taking data from access into my visual basic front end. Is it possible to find the number of records the reader is holding? As i would like to use this value to end a ...
1
vote
2answers
268 views
How can I JOIN two tables columns using a wildcard?
I'm using Access 97.
This is what I wanna do:
SELECT *
FROM CodeDIS, ListOfProducts
WHERE CodeDIS.IDNumber LIKE ListOfProducts.IDNumber*;
Sometimes the IDNumber on ListOfProducts has an extra ...
0
votes
0answers
101 views
How to disable MS-DOS 8.3 naming convention
First, the source of the problem: Microsoft Jet database engine could not find the object
As suggested by the answer there, I got it working with a couple of files where the file names were ...


