Tagged Questions
The ms-jet-ace tag has no wiki summary.
13
votes
11answers
3k views
MS Access (MDB) concurrency
For a small project I need to utilize a simple database with very light requirements: few tables, no more than few thousands of records in total, 2 or 3 users. I am working in .NET environment.
As a ...
7
votes
8answers
7k views
How to extract the schema of an Access (.mdb) database?
I am trying to extract the schema of an .mdb database, so that I can recreate the database elsewhere.
How can I pull off something like this?
6
votes
4answers
2k views
Microsoft Jet wildcards: asterisk or percentage sign?
What is the proper multi-character wildcard in the LIKE operator in Microsoft Jet and what setting affects it (if any)? I am supporting an old ASP application which runs on Microsoft Jet (on an Access ...
5
votes
7answers
2k views
Pros and cons of the Access database engine. Life after SQLite
I asked a question a while ago about which local DB was right for my situation. I needed to access the DB from both .NET code and VB6. The overwhelming response was SQLite. However, I decided to ...
4
votes
4answers
369 views
Compatible DDL (CREATE TABLE) across different SQL databases?
I'm working on a desktop application that must support (currently) MS Access and SQL Server back ends. The application is under constant development and changes are frequently being made to the ...
3
votes
3answers
1k views
SQL Server Import and Export Wizard Error
I'm trying to import an 82k+ row table from an access db to SQL Server 2008.
Using the SQL Server Import and Export Wizard, I get an error at about 78k records entered.
Here's the error:
Error ...
3
votes
2answers
3k views
Reading Microsoft Access files in Java
How to read (and write) MS Access files (.mdb) in Java?
Is there any open-source jdbc driver for MS Access?
3
votes
4answers
3k views
C# Issue: What is the simplest way for me to load a .MDB file, make changes to it, and save the changes back to the original file?
My project that I am working on is almost finished. I am loading a .MDB file, displaying the contents on a DataGrid and attempting to get those changes on the DataGrid and save them back into the .MDB ...
2
votes
1answer
275 views
Max and Min Time query
how to show max time in first row and min time in second row for access using vb6
1
vote
2answers
416 views
Connecting to an Access DB using Jet
I am trying to connect to an Access database with Jet in Visual Studio 2008, like so -
dbProvider = "PROVIDER = Microsoft.Jet.OLEDB.4.0;"
Then finding my source file to read from and opening and ...
1
vote
2answers
369 views
Nullable bool fields in MS Access linked tables
Looks like I'm not the only one out there with this issue, but there doesn't seem to be an anwwer to this problem.
I'm working in Access 2010, using a linked table to an SQL Server 2005 database ...
1
vote
1answer
136 views
Most reliable solution to determine whether to use ACE or OLEDB in connection string?
I'm handed a path of an access 2000(/2003 (edit)), or access 2007 database:
C:\database.mdb
or
C:\database.accdb
I have to determine a suitable connection string, using either ACE or JET, to ...
1
vote
1answer
817 views
MS Access: Why is ADODB.Recordset.BatchUpdate so much slower than Application.ImportXML?
I'm trying to run the code below to insert a whole lot of records (from a file with a weird file format) into my Access 2003 database from VBA. After many, many experiments, this code is the fastest ...
1
vote
5answers
769 views
opening an mdb access file without access
i dont have microsoft access but would like to open an mdb file, is there any way to do this?
the mdb file contains SQL code that i need. it is just a file that connects to a remote database. i need ...
1
vote
4answers
3k views
Reading MS Access mdb files in Delphi (for free)?
I'm looking for a Delphi component / library to open and read from an mdb (MS Access) database. I will not be writing to the db or displaying the data; just need to read the db using whatever sql ...
0
votes
1answer
253 views
Access 2010 runtime causes .NET OleDbConnection.Open() to fail with Access97 MDB file
I maintain a .NET 3.5 application (using Visual Studio 2008) that makes a call to OleDbConnection.Open() with a connection string provider of Microsoft.ACE.OLEDB.12 and an MDB file with format ...
0
votes
0answers
86 views
open or enable permission on opening mdb file access 2007
I got a mdb file that had been used to a win application database and wasn't created by Microsoft access but when i was trying to open it in access 2003 some tables did not open because of read ...
0
votes
2answers
69 views
Does Jet/ACE use indexes with a LIKE BeginsWith query?
I remember reading somewhere to avoid the LIKE operator in Jet SQL because it will not take advantage of indexes on a column. So a long time ago I started writing "begins with" queries like this:
...
0
votes
2answers
86 views
SQL Escape for access database from C#
Which characters need to be escaped before being inserted into a JET Engine data table? I'm currently just replacing the ' character for this '' (this are two ' characters, not a " character) and it ...
0
votes
0answers
97 views
Massive performance hit moving from VB/JET to .Net/ACE - any ideas
My app allows users to export data from a server database to an Access database.
The app used to use VB6 with JET and Creating the Database/Table and inserting the rows was very fast.
When I ...
0
votes
1answer
166 views
Jet database 32 and 64 bits and alternatives
We have an application that makes use of OLEDB and the Jet engine Microsoft.Jet.OLEDB.4.0. We are converting our application to also run in 64-bit mode. However, the database engine is no longer a ...
0
votes
2answers
542 views
INSERT INTO statement contains following unknown field name
I’m using Coldfusion 9,0,0,251028 on Windows 7 64-bit, with a Microsoft Access 97 database.
When I run this query:
<cfquery name="put_in_info" datasource="#db#">
insert into news
...
0
votes
2answers
301 views
Extract query definition from JET database via ADO
I have a program in Delphi 2010 that uses a JET (mdb) database via ADO. I would like to be able to extract the definitions of some of the queries in the database and display them to the user. Is ...
0
votes
0answers
434 views
DAO.DBEngine.OpenDatabase: Mémoire insuffisante. (ie. Out of memory)
I'm working on an application that talks to an Access database via DAO. Normally I use CreateObject("Access.Application") to get a copy of Access, then refer to the database via ...
0
votes
5answers
3k views
sql sum data from multiple tables
I have 2 tables AP and INV where both have the columns [PROJECT] and [Value].
I want a query to return something like this :
PROJECT | SUM_AP | SUM_INV
I came up with the code below but it's ...
0
votes
4answers
281 views
Does a command-line client exist for Microsoft Jet database engine?
Is there such a thing as a shell-based command-line client for Microsoft's Jet database engine?
Something similar to SQLite 3.x (sqlite3.exe) for SQLite.
0
votes
2answers
710 views
JDBC Driver for MsAccess which will work on Unix
I need a JDBC driver for MsAccess to be used in a Unix environment
I would strongly prefer it to be an open-source
Also it should support SQL statements
(Jackcess came close to being my choice- but ...
0
votes
3answers
83 views
ASP.NET and Access Databases
I have an ASP.NET web application that accesses an Access Database. The Access Database is only for testing purposes. I have hard coded the connection string which is correct, yet the application ...
0
votes
2answers
76 views
asp binding returning wrong value from database
When I bind a url using the productID field from my access database it returns the wrong value for example as my database starts with the first field as 2 it returns -1, then -2 for 3 and so on.
...
0
votes
2answers
970 views
How to delete a row from DB (*.mdb) in c#
I have an access DB (.mdb) named: Programs, with one table named: Data. By using the DataGridView I present the data from the table Data. I want to delete a row from the DataGridView and from the DB ...
0
votes
4answers
121 views
Scaleable MS Access ASP.NET app
I am constrained by the following, no way around it:
Read-Only Data: Microsoft Access
JET 4.0 OLDB
ASP.NET 2.0
Shared Host, very little control.
OR Mapper - LLBL Gen Pro
The app is a read-only ...
0
votes
1answer
852 views
CakePHP and connecting to MS Access db using Unixodbc
I'm trying to use an Acces (MDB) database from a CakePHP app. On a Windows machine this works fine. On a Linux machine using Unixodbc this doesn't work at all. The error is as follows:
Warning (2): ...
0
votes
2answers
335 views
How can i access and manipulate a mdb file available online (on web) using VB
I have a mdb file hosted on my site http://www.simplyfy.co.in/db/dbfile.mdb. I am developing an application which will be running on multiple machines and will contact the mdb file via internet. I am ...
0
votes
2answers
206 views
Downloading MDB (Access) file from IIS
This question might be better asked over on ServerFault, but since this is related to a programming project, I'll ask here.
Simply put, how do I configure IIS to let me download an Access (.MDB) file ...
0
votes
1answer
4k views
JET and ODBC driver missing, can not get data from MDBs
These are MY symptoms: (XP Pro, 32bit)
-Programs that access .mdb databases (aside from Access 2007 itself) can not get any data.
-Using the Data Sources in Visual Studio 2008 to connect to an MDB ...
0
votes
1answer
525 views
MailMerge from C# when Access mdb has password
I am trying to use MailMerge programatically ( from C# ). I am using an Access database file as a data source. The Access database has a password. The following code does not work for some reason even ...
0
votes
6answers
622 views
Numeric “date” in database - How to interact with that using “normal” dates?
I'm using this database where the date colomn is a numeric value instead of a Date value.
Yes, I know I can change that with a mouseclick, but all the applications using that database were made by ...
0
votes
2answers
3k views
Creating a new database (.mdb) with ADO.NET
How can I create a empty .mdb file? I'm using ADO.NET and C#. Thanks!
0
votes
3answers
9k views
Insert rows into Access db from C# using Microsoft.Jet.OLEDB.4.0, autonumber column is set to zero
I'm using C# and Microsoft.Jet.OLEDB.4.0 provider to insert rows into an Access mdb.
Yes, I know Access sucks. It's a huge legacy app, and everything else works OK.
The table has an autonumber ...
-3
votes
1answer
95 views
MDB query for Time
I have table as
Id Name Date Time
1 S 1-Dec-2009 9:00
2 N 1-Dec-2009 10:00
1 S 1-Dec-2009 10:30
1 S 1-Dec-2009 11:00
2 N 1-Dec-2009 11:10
Need query to display ...