I have an application written in VB6 with SP5. I am using ADO with Jet 4.0 to store and retreive data from an ACCESS 2000 database. I have the database stored on the server so multiple users can get to it.
The application works fine on my machine but when I installed it on another machine some weird things are happening.
I have a simple select statement that looks like this.
Select * from trainsch where
ucase(keyword) = ucase(g_str_keyword) and
ucase(Category) = ucase(g_str_category)
If this recordset retreives any records a message box will pop up explaining the record already exists.
The problem I am having is that when I execute this SQL statement I get the message box because the record is already out there on the database, but on the other machine I installed the application executes the SQL statement it is like it doesn't retreive a record. I don't get any error messages it just don't find the record.
The only differences, I can think of, between the machines are I have ACCESS 2000 and the other machine has ACCESS 97.
Would this be the cause of this problem and if so how can it be fixed.
Thanks
Tim Morrow
morrow_tim@cityofgastonia.com
The application works fine on my machine but when I installed it on another machine some weird things are happening.
I have a simple select statement that looks like this.
Select * from trainsch where
ucase(keyword) = ucase(g_str_keyword) and
ucase(Category) = ucase(g_str_category)
If this recordset retreives any records a message box will pop up explaining the record already exists.
The problem I am having is that when I execute this SQL statement I get the message box because the record is already out there on the database, but on the other machine I installed the application executes the SQL statement it is like it doesn't retreive a record. I don't get any error messages it just don't find the record.
The only differences, I can think of, between the machines are I have ACCESS 2000 and the other machine has ACCESS 97.
Would this be the cause of this problem and if so how can it be fixed.
Thanks
Tim Morrow
morrow_tim@cityofgastonia.com