Microsoft Access is a rapid application database development and reporting tool.
78
votes
15answers
20k views
How do you use version control with Access development?
I'm involved with updating an Access solution. It has a good amount of VBA, a number of queries, a small amount of tables, and a few forms for data entry & report generation. It's an ideal ...
14
votes
15answers
2k views
Non-web SQL Injection
There seems to be some hysteria about SQL Injection attacks. Most recently, here
http://stackoverflow.com/questions/505838/vba-simple-database-query-from-word
If I'm creating a macro in Excel that ...
5
votes
5answers
5k views
Combine rows / concatenate rows
I'm looking for an Access 2007 equivalent to SQL Server's COALESCE function.
In SQL Server you could do something like:
---Person---
John
Steve
Richard
DECLARE @PersonList nvarchar(1024)
SELECT ...
2
votes
2answers
8k views
ms-access: HOW TO decompile and recompile
i have an access DB and i would like to know the proper way of decompiling and recompiling it, as i have never done this before
49
votes
7answers
158k views
Microsoft.ACE.OLEDB.12.0 provider is not registered
I have a Visual Studio 2008 solution with two projects (a Word-Template project and a VB.Net console application for testing). Both projects reference a database project which opens a connection to ...
1
vote
1answer
2k views
Is there a simple way of populating dropdown in this Access Database schema?
I have 3 tables which look like this:
Location Node Sektor
----- ------- -------
PK: ID - Autonumber PK: ID - Autonumber PK: ID - ...
30
votes
7answers
49k views
Query Microsoft Access MDB Database using LINQ and C#
I have a *.MDB database file, and I am wondering if it is possible or recommended to work against it using LINQ in C#. I am also wondering what some simple examples would look like.
I don't know a ...
19
votes
9answers
15k views
Classic ASP SQL Injection Protection
What is a strong way to protect against sql injection for a classic asp app?
FYI I am using it with an access DB. (I didnt write the app)
19
votes
2answers
6k views
Writing large number of records (bulk insert) to Access in .NET/C#
What is the best way to perform bulk inserts into an MS Access database from .NET? Using ADO.NET, it is taking way over an hour to write out a large dataset.
Note that my original post, before I ...
5
votes
1answer
1k views
What's the difference between DoCmd.SetWarnings and CurrentDB.Execute
In the comments on this answer, Remou writes that
CurrentDB.Execute "insert sql here"
is better than
DoCmd.SetWarnings = 0
DoCmd.RunSQL "insert sql here"
due to the built-in warnings that ...
77
votes
28answers
79k views
Good Free Alternative To MS Access [closed]
Consider the need to develop a lightweight desktop DB application on the Microsoft platforms.
It could be done fairly easily with MS Access but I'd like to be able to distribute it to others and I ...
39
votes
12answers
64k views
SQL Query - Using Order By in UNION
How can one programmatically sort a union query when pulling data from two tables? For example,
SELECT table1.field1 FROM table1 ORDER BY table1.field1
UNION
SELECT table2.field1 FROM table2 ORDER BY ...
12
votes
3answers
6k views
MS-Access, VBA and error handling
This is more an observation than a real question: MS-Access (and VBA in general) is desperately missing a tool where error handling code can be generated automatically, and where the line number can ...
10
votes
4answers
5k views
is there a group_concat function in ms-access?
is there a group_concat function in ms-access or something similar?
27
votes
9answers
5k views
Best way to test a MS Access application?
With the code, forms and data inside the same database I am wondering what are the best practices to design a suite of tests for a Microsoft Access application (say for Access 2007).
One of the main ...
9
votes
7answers
4k views
Working with multiple programmers on MS Access
Would you recommend working with multiple programmers on an MS Access application?
One of our MS Access application has grown to the point where the number of changes (bug fixes) and new features can ...
8
votes
8answers
15k views
Is there any way to create multiple insert statements in a ms-access query?
I am using MS Access 2003. I want to run a lot of insert SQL statements in what is called 'Query' in MS Access. Is there any easy(or indeed any way) to do it?
14
votes
7answers
18k views
Is it better to use ADO or DAO in Access 2007?
When creating a new database in Access 2007, should ADO (ActiveX Data Objects) or DAO (Data Access Objects) be used?
Edit: Part of this database will be importing data from Excel 2007 spreadsheets.
5
votes
1answer
7k views
Creating a DSN-less connection for MS Access within Java
I'm building a desktop app that needs to communicate with a MS Access database. Now, unless I want to register the DSN for the database on every computer that's going to use the desktop app, I need a ...
2
votes
1answer
5k views
create form to add records in multiple tables
I am new to access (I have only 2003 version) and I am getting crazy. Consider also that I am a novice with DB in general, so now I am at the point that I am very confused... please help.
I am trying ...
4
votes
2answers
14k views
11
votes
4answers
64k views
How to show “Open File” Dialog in Access 2007 VBA?
How would I go about showing an open file (or file select) dialog in access 2007 VBA?
I have tried using Application.GetOpenFileName as I would in Excel, but this function doesn't exist in Access.
16
votes
13answers
6k views
Is MS Access (JET) suitable for multiuser access?
I have a product designed to be a desktop product using MS Access file as a DB.
Now, some users need to install it in a few PCs (let's say 2 or 3) and SHARE the database.
I thought to place the MS ...
12
votes
6answers
12k views
What do I need to read Microsoft Access databases using Python?
How can I access Microsoft Access databases in Python? With SQL?
I'd prefere a solution that works with Linux, but I could also settle for Windows.
I only require read access.
9
votes
6answers
25k views
7
votes
3answers
4k views
Do we have transactions in MS-Access?
I am developing a small desktop application using C#.NET and MS-Access. I don't have any prior experience of MS-Access. I want to know if we can use transactions in Ms-Access or not.
I have the below ...
5
votes
3answers
6k views
OleDbCommand parameters order and priority
I have been debugging this query for the last 40 minutes, and the problem apparently is the order of the parameters after all.
SELECT * FROM tblSomeThing WHERE id = @id AND debut = @dtDebut AND fin = ...
3
votes
5answers
3k views
What is the best way to synchronize data between MS Access and MySQL?
I have an access database on a windows machine, which I must import into mysql on a linux webserver. At the moment the access dabatbase table is exported as a text file, automatically copied with ftp, ...
1
vote
3answers
600 views
Does MS Access suppress primary key violations on Inserts?
I am in the process of re-writing an MS Access database to SQL server and have found an strange issue in Access that I am hoping someone can help with.
I have a table let's call it 'Main' with a ...
12
votes
8answers
14k 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?
17
votes
6answers
7k views
Lightweight SQL database which doesn't require installation
Could you recommend me, please, lightweight SQL database which doesn't require installation on a client computer to work and could be accessed easily from .NET application? Only basic SQL capabilities ...
7
votes
10answers
9k views
Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceess
I have a table, call it TBL. It has two columns,call them A and B. Now in the query I require one column as A and other column should be a comma seprated list of all B's which are against A in TBL.
...
7
votes
9answers
15k views
How to Round in MS Access, VBA
Whats the best way to round in VBA Access?
My current method utilizes the Excel method
Excel.WorksheetFunction.Round(...
But I am looking for a means that does not rely on Excel.
4
votes
3answers
39k views
Is there a Windows 7 ODBC driver for Access?
I have an existing PHP script that needs to work with data from an Access db, and the machine it's on is migrating from Win2K to Windows 7. I looked around, and Microsoft seems to say that this is ...
4
votes
8answers
23k views
Error: “Could Not Find Installable ISAM”
I've written some VBA code in an Excel workbook to retrieve data from an Access database in the same directory on a desktop. It works fine on my machine and several other machines running Windows XP, ...
2
votes
5answers
19k views
SQL to add column with default value - Access 2003
Updating an old ASP/Access site for a client (and hating it) - I need SQL to add a column to an existing table and set a default value. Doesn't work - any ideas?
This works fine
ALTER TABLE ...
0
votes
1answer
416 views
How can I read an Access file (.accdb) from a stream?
I asked two similar questions:
Use OLEDB to read AccessFile from Stream to DataSet
Read Microsoft Access File(.accdb) by OpenXML SDK
All of my attempts have been to have read an Access file ...
20
votes
11answers
6k 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 ...
10
votes
7answers
10k views
Is there a need to set Objects to Nothing inside VBA Functions
I always read that it is recommended to set objects to nothing, once I am done.
But I normally use them only in functions inside forms.
Isn't the reference lost when the function scope is left?
So ...
7
votes
4answers
8k views
Is It possible to create recursive query in access?
I have a table
Id
ParentID
jobName
jobStatus
The root ParentID is 0.
Is it possible is Access to create a query to find a root for a given job.
Database is mdb no linked tables. Access version is ...
6
votes
5answers
13k views
How can I convert a string from windows-1252 to utf-8 in Ruby?
I'm migrating some data from MS Access 2003 to MySQL 5.0 using Ruby 1.8.6 on Windows XP (writing a Rake task to do this).
Turns out the Windows string data is encoded as windows-1252 and Rails and ...
5
votes
4answers
9k views
Programmatically managing Microsoft Access Attachment-typed field with .NET
Access added a new data type in the 2007 version--the Attachment type. We are currently working on a WinForms application with .NET 3.5 (C#) that uses an Access 2007 database. We want to be able to ...
9
votes
8answers
15k views
Escaping ' in Access SQL
I'm trying to do a domain lookup in vba with something like this:
DLookup("island", "villages", "village = '" & txtVillage & "'")
This works fine until txtVillage is something like Dillon's ...
5
votes
1answer
9k views
PHP and Microsoft Access database - Connection and CRUD
I have no experience with access.
How to do update/insert/delete/select statement with and without $rs = new com("ADODB.RecordSet");
?
8
votes
2answers
11k views
LINQ asp.net page against MS Access .
I have a ASP.Net page using ADO to query MS access database and as a learning exercise i would like to incorporate LINQ. I have one simple table called Quotes.
The fields are: QuoteID, ...
7
votes
14answers
63k views
Operation must use an updatable query. (Error 3073) Microsoft Access
On some Microsoft Access queries, I get the following message: Operation must use an updatable query. (Error 3073). I work around it by using temporary tables, but I'm wondering if there's a better ...
3
votes
7answers
13k views
Data type mismatch in criteria expression | Access, OleDb, C#
I read/update data from MS Access using C#.
My code is:
public static void UpdateLastLogin(int userid, DateTime logintime) ///logintime = DateTime.Now
{
string sql = @"UPDATE [Customers] SET ...
1
vote
3answers
4k views
How can I get a value from the update query prompt in Access VBA?
When we run a update query we get prompt saying that 'these many recordr are going to be updated. do you want to continue' is it possible to capture the value in the prompt message to a variable i.e ...
0
votes
2answers
9k views
using parameters inserting data into access database
I have the following method to inserting data into a an access databasewhich works fine but I do get a problem if I try to insert text that contains single quotes I have learned.
[WebMethod]
public ...
4
votes
2answers
7k views
Ms Access Query: Concatenating Rows through a query
Suppose I have table in Ms Access with following information:
ColumnA ColumnB
1 abc
1 pqr
1 xyz
2 efg
2 hij
3 asd
My question is, how can I concatenate the ...