You should be fine as long as you have the right providers installed.
If I could make a suggestion though... I've seen tons of people go through a
lot of headaches b/c of Access. When MSDE wasn't around this was
understandable. However in light of the fact that MSDE has every
conceivable advantage, to the customer and developer over Access and it's
free, it's hard to understand using Access.
If you switch to MSDE you'll get the performance benefits of using the
SqlClient library over OleDb. You can use REAL stored procedures. You can
set up your permissions to greatly enhance security. And you can have
effective backup and recovery w/ point in time restore ability. Plus you
will be able to handle more than 5 users banging on your db file and you
won't have to compact and repair all the time.
I know, all the Access zealots will tell you maintenance is sooo hard with
MSDE, but that's not borne out in reality and it only pertains to things
that are IMPOSSIBLE with Access.
Also, you can use files for instance or any other mechanism, (embedded
resourcss) to build tables or change them at runtime.
You won't regret the swtich. To give you a feel for it, this may be useful
http://www.knowdotnet.com/articles/ddl.html
HTH,
Bill