Iam developing a client/server app in java.
I need to store ids , passwords etc of all the users for login,document sharing and chat purposes.
I dont want to install any DBMS because i need only 1 or 2 tables with around a thousand entries.
Is there any way to do this??
Iam developing a client/server app in java. I need to store ids , passwords
Share
Why not use the JavaDb which comes with the JDK as standard ? You can run it in-JVM and persist to the file-system. It’s a SQL database so if you’re familiar witha RDBMS it should be straightforward to integrate.