-2

How can I use MS Access as a back-end database for a Delphi program?

BIBD
  • 15,107
  • 25
  • 85
  • 137
rebel_UA
  • 6,525
  • 3
  • 21
  • 19

1 Answers1

3

Using MS Access from Delphi is straight forward. ADO is supported in Professional and Enterprise/Architect SKUs.

I would recommend saving the hash for your passwords in the database. this way, when the user enters a user name and password, you hash that password and compare it to what's stored in the database. This means you don't have an un-hashed version hanging around, so it's more secure.

Community
  • 1
  • 1
Bruce McGee
  • 15,076
  • 6
  • 55
  • 70