Quote:
|
Originally Posted by healdem
..in which case you are not using VB6, you are using VBA, and there is plenty of SQL in an access mdb.. its just that you don't actually see it.. Access talks to JET using SQL. If you access application is retrieving, manipulating or doing anythign with your data then you can virtually guarantee its using SQL.
If all your customers / clients have licensed copies of Access then in my view why would you want to complicate things by installing a separate server product like MySQL. waht is driving this question, why do you think you many need to use MySQL?
to get the best of of MySQl (or any server product) requires a significant amount of effort compared to using access with JET... not something for the faint hearted or beginners.
|
r937 is correct. It is the multiple user issue I am working on.
I AM using
VB 6, enterprise edition, SP 6
MySql is supposed to be free.
here is my connection string to the Access DB.
CN1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" & "c:\Accessupgradetest\blank.mdb"
here is the only line of SQl
CMD.CommandText = "SELECT * FROM Incident ORDER BY INCIDENTDATE"
Set rsIncidents.Source = CMD
here is how I reference a field in the table:
RsIncidents("ClientName").value = "Smith, Jim"
RsIncidents.Update