-2
votes
Importing Access data into SQL Server using ColdFusion
It's never advisable to loop through records when a SQL Update can be used.
It's not clear from your question what database interface layer you are using, but it is possible with the right …
0
votes
Is there any way to create multiple insert statements in a ms-access query?
I think it's inadvisable to propose a particular data interface, as Jonathan does, when you haven't clarified the context in which the code is going to run.
If the data store is a Jet datab …
1
vote
Keyboard Shortcut in Access 2003
Sendkeys is always a mistake because almost nothing in Access not doable via code.
The correct code is:
DoCmd.RunCommand acCmdRun
How you run that code is up to you, but it …
16
votes
Good Free Alternative To MS Access
Schnapple asks:
Are you referring to the concept of a
free database to distribute with an
application, or an Access-like "single
file, no installation" database?
…
0
votes
What’s the best way to work with SQL Server data non-programmatically?
You might want to read
Tony Toews's Access Performance FAQ, which provides a number of hints on how to improve perfo …
2
votes
Is there a way to get ms-access to display images from external files
Have you looked at Stephen Lebans' solutions? Here's one:
Image Class Module for Access
Check out the list of other …
2
votes
How would you migrate hundreds of MS Access databases to a central service?
Upsizing an Access application is no magic bullet. It may be that some things will be faster, but some types of operations will be real dogs. That means that an upsized app has to be tested thoroug …
1
vote
File database suggestion with support for multiple concurent users.
The original question makes no sense to me, in that the options don't belong together. BerkeleyDB is a database engine only, while Access is an application development tool that ships with a defaul …
1
vote
MS Access Reporting - can it be pretty?
I would suggest that the problem you're having is because the requirement to replicate the old method identically is an incredibly bad idea.
You're not using Excel any more.
You're …
0
votes
Read Access File into a DataSet
Your original question as worded is nonsense:
Is there an easy way to read an entire Access file (.mdb) into...
You certainly don't want the en …
-2
votes
Best way to test a MS Access application?
Data Access Pages have been deprecated by MS for quite some time, and never really worked in the first place (they were dependent on the Office Widgets being installed, and worked only in IE, and o …
0
votes
Is there a way for MS Access to grab the current Active Directory user?
Depending on environment variables to remain valid is a bad idea, since they can easily be changed within a user session.
…
0
votes
Any tips on getting Rails to run with an Access back-end?
Maudite wrote:
True in access = -1 not 1
Not correct. True is defined as not being false. So, if you want to use True in a WHERE clause, use Not False i …
0
votes
Delete Records from Access database, error while deleting
samjudson suggested:
DoCmd.RunCommand acCmdUndo
You can also use Me.Undo, to undo the last edit to the form in which the code runs.
Or, Me!MySub …
0
votes
Java code to import CSV into Access
Question to Joshua McKinnon:
Can you provide a citation about MS's plans to never introduce 64-bit ODBC drivers for Jet? This sounds reasonable, so I'm not doubting you at all, I would just …
