Re: How to store password?
Create a multi-tier application, where an inner tier residing on a server performs all database IO and your application connects to the server application - not directly to the database. Client communicates to the server through some type of communication (eg Object serialization, xml, text, etc...not direct SQL commands) and the server performs the SQL operations.
For example:
Client <--> [Inner Tier (server application) <--> Database]
Where [] is one or more servers.
Re: How to store password?
Hi,
You can use SHA to encrypt the password too.
Core java
Re: How to store password?
Quote:
Originally Posted by
mr.miku
Hi,
You can use SHA to encrypt the password too.
How does this solve the original posters problem?