MS Access

aspguru

New Member
Messages
1
Reaction score
0
Points
0
Is there any special permissions that need to be set to use a MS Access database?
 

obamacard

New Member
Messages
3
Reaction score
0
Points
0
I was wondering the same thing, if I upload a MS Access database can the server show it right?

:lockd:
 

Anna

I am just me
Staff member
Messages
11,739
Reaction score
579
Points
113
very doubtful... server is *nix based, MS Access is windows based

You got access to a MySQL server though
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
very doubtful... server is *nix based, MS Access is windows based

You got access to a MySQL server though

*might* still work actually; the database itself is just a file, and you don't necessarily need the MSAccess application once the file is created, if you have another app (such as asp.net or even php) that can insert and retrieve data from said file.


Never tried it though on x10 honestly - it's worth a shot :)
 

mfurqanabid

New Member
Messages
37
Reaction score
0
Points
0
Is there any special permissions that need to be set to use a MS Access database?


Yes. You already have all the tools you need if you are running entirely under Windows 9x/Me, or NT/2000, where you can use ODBC and Microsoft's ODBC drivers for Microsoft Access databases.
If you are running PHP on a Unix box and want to talk to MS Access on a Windows box you will need Unix ODBC drivers.

Visit http://www.php.net/manual/en/faq.databases.php#faq.databases.access

or

You can use the PEAR DB to access MS ACCESS DATABASE http://pear.php.net/package/DB
 
Last edited:
Top