0
votes
3answers
16 views
ASP running in 64 bits environment with Access database
I have a customer since 2003 running a simple web site built in asp 3.0 with an access database file (.mdb). Recently that customer aquired a new server that came with windows 2003 server 64 bits and …
0
votes
5answers
28 views
How to look up values from a table in Access
I have an Access database that is used to store basic info in a table such as first and last name. How would I go about adding the functionality to lookup by last name?
Is there a way to type in the …
7
votes
8answers
119 views
Building SQL strings in Access/VBA
Occasionally, I have had to build a SQL string in VBA and execute it with Docmd.RunSql(). I have always built these strings by concatenating variables into the string, e.g:
Dim mysqlstring as String
…
0
votes
1answer
13 views
Tagging Records in a Continuous Form
In a continuous subform, I display records based on a DISTINCT query. Because it's distinct, each row does not include a record ID.
Does anyone know of a way to add a checkbox (or similar), so that a …
3
votes
6answers
62 views
database synchronization - MS Access
I have an issue at the moment where multiple (same schema) access 2003 databases are used on laptops.
I need to find an automated way to synchronize the data into a central access database.
Data on …
1
vote
1answer
18 views
How to populate an access database form with values from a search
I have an Access database that I inherited and am trying to add some search functionality to it. This is simply a database that holds patient records such as name, address, phone etc. What I want to …
0
votes
3answers
34 views
MS Access - Can’t Open Any More Tables using JdbcOdbcDriver
Hi,
at work we have to deal with several MS Access mdb files, so we use the default JdbcOdbcBridge Driver which comes with the Sun JVM and, for most cases, it works great.
The problem is that when …
0
votes
0answers
18 views
GUID primary keys and Access Front End
I have a SQL server database with several tables that have GUIDs for primary keys that are automatically generated by SQL newID default value. (I don't want to get into a debate on the pro's and cons …
0
votes
1answer
40 views
Complicated MS Access Greatest-N-Per-Group problem
I am looking to combine the following queries into one, where
scouting.jumpGate is integer,
scouting.astroLoc is a string,
scouting.ownerguild is a string and
scouting.galaxy is a integer
that …
1
vote
3answers
44 views
Programmatically check for Access database corruption?
Is there a way to programmatically check for database object corruption in Access 2003? My development project has gotten complex enough that it's hard to manually check all the objects after a day …
0
votes
1answer
26 views
Graph on an access form
Hi,
I have some code at the moment to draw a graph based on the values of a series of text boxes on an access form.
I’m happy with the code and how it works but I’m not convinced that it is the most …
0
votes
3answers
97 views
+100
Update of AccessDatasource does nothing but has no error
My UPDATE command fails to change any date in the table while very similar SELECT and DELETE commands work. When I change the UpdateParameters to invalid choices, the code behind command throws an …
1
vote
2answers
28 views
JDBC and MS-Access problem
I'm trying to connect to an MSAccess database and retrieve some data.
With simple examples all runs well but if i'm going to use some
where clauses i get no data.
This example is ok:
…
1
vote
3answers
52 views
Login Screen in Access with forms, macros and queriesms-
I have an embarrassing question regarding Access. I can build relational databases in my sleep but I have always used PHP, mySQL and HTML to build my applications.
I've hated Access with a passion …
0
votes
1answer
52 views
Excel VBA INSERT INTO statement using variables
I am using an SQL query to insert data from an excel worksheet into an Access database. I put all the data that I want from the worksheet into variables:
rwyNumber = Range("b13").Value & …
