Tagged Questions
Jet is the SQL database engine used by Microsoft Windows. It is also used by Microsoft Access; Jet databases are more commonly known as "Access databases".
16
votes
4answers
28k views
Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine
I created a windows application developed in .NET 3.5 in a 32 bit Windows 2008 server. When deployed the application in a 64 bit server it shows the error "Microsoft.Jet.OLEDB.4.0' provider is not ...
11
votes
4answers
8k views
Select Top (all but 10) from … in Microsoft Access
Say I've got a query
SELECT TOP 10 ... FROM ... ORDER BY ...
in Access (well, really Jet). The question is: how can I get all the other rows... everything except the top 10?
10
votes
3answers
2k views
How to determine Jet database Engine Type programmatically
I have a program which needs to upgrade any Access (Jet) database it opens to JET Version4.x if it isn't already that version. (This enables use of SQL-92 syntax features)
Upgrading is (relatively) ...
10
votes
9answers
2k views
Why should I use SQLite over a Jet database
Someone asked me this the other day, and I couldn't think of a good answer. Platform portability is completely irrelevant to the project.
In fact, Jet has some features that SQLite does not, namely ...
8
votes
12answers
8k views
@@IDENTITY after INSERT statement always returns 0
I need a function which executes an INSERT statement on a database and returns the Auto_Increment primary key. I have the following C# code but, while the INSERT statement works fine (I can see the ...
7
votes
3answers
2k views
Accessing a JET (.mdb) database in Python
Is there a way to access a JET database from Python? I'm on Linux. All I found was a .mdb viewer in the repositories, but it's very faulty. Thanks
6
votes
3answers
547 views
How fast is SQLite compared to Microsoft Access MDB?
Currently I'm thinking about replacing the usage of Microsoft Jet MDB databases on a single-user .NET C# Windows Forms application by a SQlite database.
My goal is to lower installation requirements ...
5
votes
2answers
3k views
How to reset autonumber seed - MS Access/VB6
I have a VB6/Access application that occasionally encounters a problem with wrong autonumber field seed.
Lets say there is a table MYTABLE with an autonumber field ID (that is also the primary key). ...
5
votes
3answers
9k views
Autonumber value of last inserted row - MS Access / VBA
I have a JET table with an auto-number as the primary key, and I would like to know how I can retrieve this number after inserting a row. I have thought of using MAX() to retrieve the row with the ...
4
votes
3answers
402 views
How can I get a list of tables in an Access (Jet) database?
I need to see if a table exists in an Access database used by my c# program. Is know there are SQL commands for other databases that will return a list of tables. Is there such a command for ...
4
votes
5answers
198 views
Where can I find the documentation for the particular kind of SQL used by the Jet 4.0 engine?
Which I think is the same as the one used by MS Access, which I think is not the same as the one used by MySQL and others. I need the documentation for this particular "kind" or "subset" of SQL ...
4
votes
1answer
249 views
Network problem, suggestions sought
The LAN which has about a half dozen windows xp professional pcs and one windows 7 professional pc.
A jet/access '97 database file is acting as the database.
The method of acccess is via dao ...
4
votes
2answers
398 views
Excel-Access ADO Update Values
I am trying to update a table in Access from the values in excel, however every time i run the code it creates new rows instead of updating the already existing ones, any ideas why? I am new to ADO, ...
4
votes
5answers
19k views
Reading Comma Delimited Text File to C# DataTable, columns get truncated to 255 characters
We are importing from CSV to SQL. To do so, we are reading the CSV file and writing to a temporary .txt file using a schema.ini. (I'm not sure yet exactly why are are writing to this temporary file, ...
4
votes
5answers
10k views
How to get id of newly inserted record using Excel VBA?
Seems a common enough problem this, but most solutions refer to concatenating multiple SQL commands, something which I believe can't be done with ADO/VBA (I'll be glad to be shown wrong in this regard ...
3
votes
2answers
171 views
Is RavenDB just a frontend for Access?
I've started using Raven for my last project. When my boss learned about it, he mentioned it's based on Access and he had very bad experience with multiple users and Access. Now I have to either ...
3
votes
1answer
205 views
OleDbDataAdapter datatype mismatch using Jet
I'm using an OleDbDataAdapter (Microsoft.ACE.OLEDB.12.0 to be precise) to retrieve data from an Excel workbook. For one table I'm using a typed dataset but for another table I can't do that since the ...
3
votes
2answers
91 views
Why is this very simple SQL query failing in MS Access?
I have a query that by all rights should not possibly fail, and I can't for the life of me figure out why
INSERT INTO Grocery_Store_Prices(Store,Item,Brand,Price,Unit,Quantity,Note)
...
3
votes
4answers
1k views
Connect to MS Access remote .mdb file from php on linux
I have been digging internet for couple days, reading very old information, that leads to very old and nonexisting sites, still, I understood, what is needed to achieve my goal.
We have a file.mdb ...
3
votes
1answer
165 views
How to determine if ACE or JET on windows machine using .net?
How to determine (for a machine running windows xp/vista/7) whether ACE or JET is installed, so I can use an appropiate connection string to connect to a access database.
3
votes
3answers
2k views
Problem with using OleDbDataAdapter to fetch data from a Excel sheet
First, I want to say that I'm out on deep water here, since I'm just doing some changes to code that is written by someone else in the company, using OleDbDataAdapter to "talk" to Excel and I'm not ...
3
votes
2answers
713 views
I need a workaround for Excel Guessing Data Types problem
I'm creating a utility to import data from Excel to Oracle database,
I have a fixed template for the excel file,
Now, when I'm trying to import the data by Jet provider and ADO.Net - Ole connection ...
3
votes
2answers
308 views
How to combine two sql queries?
I have a stock table and I would like to create a report that will show how often were items ordered.
"stock" table:
item_id | pcs | operation
apples | 100 | order
oranges | 50 | order
apples ...
3
votes
2answers
1k views
How to convert a JET database to SQLite?
The title says it all. I'm a Linux user so an open-source, Linux-friendly solution would be preferable. Thanks
3
votes
5answers
5k views
Is Jet database engine included in Windows xp, vista and Windows7?
I need a data store for single-user, read-only access. I need multiple tables, but not related. I also need to do two-column indexing. Seems like Jet is a good choice. Front end will be either VB or ...
3
votes
3answers
2k views
Jet Engine - 255 character truncation
I'm needing to import an Excel spreadsheet into my program and have the following code:
string connectionString = String.Format(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended ...
3
votes
8answers
798 views
CPU Stuck at 100% on Customer PC, any debugging suggestions?
I'm having a dead-end situation with one of the clients using my software. Out of about 40 copies of our product sold (Application programmed in .NET 2.0 using VB.NET 2005), about 2 get non-responsive ...
3
votes
5answers
5k views
How to use LIKE condition in SQL with numeric field?
I'm using this query to get some specific data: "select * from emp where emp_name LIKE 's%'";
emp_nam is character field, how can I use the same logic condition with numeric field? something like:
...
3
votes
3answers
2k views
Querying Jet Databases/Excel files with C# under x64 OS
So I have learned that that the Microsoft.Jet.OLEDB.4.0 data provider for querying data sources like Microsoft Access MDB files and Excel spreadsheets does not work under a Windows 64-bit operating ...
3
votes
4answers
2k views
How do I create a Microsoft Jet (Access) database without an interop assembly?
I need to create an access (mdb) database without using the ADOX interop assembly.
How can this be done?
2
votes
2answers
76 views
MS Access slow in network share
I have a .NET application (VB.NET) that runs against a MS Access database. Every data request connects to the access database, runs and returns the query and closes the connection back again.
I ...
2
votes
1answer
75 views
Table-less UNION query in MS Access (Jet/ACE)
This works as expected:
SELECT "Mike" AS FName
This fails with the error "Query input must contain at least one table or query":
SELECT "Mike" AS FName
UNION ALL
SELECT "John" AS FName
Is this ...
2
votes
1answer
153 views
ADO.NET way for creating a linked table
I'm writing an application that uses ADO.NET OLEDB provider. Database is Access. Most of DB interaction is through DDL/DML SQL queries.
I now need to create linked tables and there doesn't seem to ...
2
votes
1answer
198 views
ADO Updateable Queries - error when a one of the joined tables has no record
I use the 'updateable query' feature of ADO, being able to select a dataset from several tables and criteria and display it in a grid or some other UI for the user to browse and edit.
However, and ...
2
votes
1answer
280 views
Why does C# always convert numbers texts to decimal when reading from Excel? [closed]
Possible Duplicate:
Accessing Excel Spreadsheet with C# occasionally returns blank value for some cells
I am reading an XLS file using Jet OLEDB.
Some columns are text, but when I have a ...
2
votes
1answer
358 views
Page-level locking in Jet 4.0 insert? “Can't update; currently locked” error
I'm getting this error intermittently before record insert on a subform.
The subform is in 'continuous records' mode. The subform recordsource is a parameter query opened via querydef.OpenRecordset, ...
2
votes
1answer
135 views
How to make Extensible Storage Engine Database Shrink? - the database should not have much data inside?
Hoping Laurion Burchall is listening :)
My database has a longbinary field that is used to temporarily cache some data. The data may not actually be needed for very long. Typical sizes range from ...
2
votes
3answers
355 views
How should I lock the table in this VB6 / Access application?
I'm working on a VB6 application using an Access database. The application writes messages to a log table from time to time. Several instances of the application may be running simultaneously and to ...
2
votes
1answer
510 views
What's the difference between Jet OLEDB:Transaction Commit Mode and Jet OLEDB:User Commit Sync?
Althoug both Jet/OLE DB parameters are relativly well documented I fail to understand the difference between these two connection parameters:
The first one:
Jet OLEDB:Transaction Commit Mode
...
2
votes
1answer
265 views
Inserting a million small records into Extensible Storage Engine (JetBlue) - quickly
I'm hoping Laurion Burchall reads this :-)
I need to insert a million tiny records as quickly as possible.
Right now I'm in a very tight loop where, for every record, I
a) start a transaction ...
2
votes
2answers
137 views
Question on code generation in eclipse
What is the most useful code generation tool in eclipse, velocity or jet templates? Anybody has experience with both of them and know the pro and cons?
2
votes
2answers
238 views
Adding to MS Access relationship diagram programmatically
I have an application that ships to the customer with a JET database including a relationship diagram which more savvy users are invited to view to gain insight into the construction of the database.
...
2
votes
5answers
284 views
Which affects Access Database performance more: Thousands of tables or Millions of records?
We're using an Access Database as the back-end to our software product. The program has been alpha/beta tested at a company for about 2 years now and we've noted that one of our tables has been ...
2
votes
4answers
311 views
Will an MS Access back-end for a client server application have transfer speed problems?
If I use MS Access in the back-end of a client-server type software and the database file is sent from client to server, will it create any problems in further database handling, transfer speed, or ...
2
votes
3answers
369 views
OleDB Jet - Float issues in reading excel data
When I read a sheet into a DataTable using the OleDbDataReader, floating point numbers loose their precision.
I tried forcing OleDb to read the excel data as string, but although the data is now ...
2
votes
1answer
1k views
Provider selection, when trying to access Excel table in Delphi 7
I am trying to connect to excel table from Delphi 7 using TAdoConnection component.
The problem is when I select Microsoft.Jet.OLEDB.4.0, Extended Properties="Excel 8.0;", I sometimes receive error,
...
2
votes
3answers
1k views
How do I escape all special characters in Access Jet SQL?
I'm trying to change a password with a DDL statement like:
CurrentProject.Connection.Execute "ALTER USER barney PASSWORD "[]!@#$%^ oldpassword"
Yes, that's a nasty password, but someone tried ...
2
votes
3answers
3k views
Configure ASP.NET to use x86 on x64 Windows
I am trying to deploy GAL Modifier, which is an ASP.NET website which uses Microsoft Access on a Windows 2003 x64 machine. However there is no JET driver on x64 (see here), so the change is to use ...
2
votes
7answers
372 views
What is the Microsoft Jet database and is it appropriate for a small app with sensitive information?
I'm planning a new ASP.NET project that will become a product that is installed by techinical staff that work in various companies. The program will be storing sensitive information that shouldn't be ...
2
votes
2answers
168 views
Security when source code is public
I realize that the answer to this question is likely quite obvious (if somewhat inconvenient to me), but I'm hoping someone will have an ingenious solution.
I'm slowly building an application in my ...