Hi guys.
I have a program which needs to store some user profile data. I want to use a database to do this, but i've never worked with databases. I was wondering if anyone can help me with it.
My program is written in the java programming language, and i have installed the MS SQL engine. I created a database and was able to connect to it, and add records and stuff. But, i don't want my program to connect to a server to do that. I want the database file to be stored in my application's local folder, so i can directly manipulate the data without connecting to a server. This way, i can run the application on any computer without logging onto any server account.
So my question is, how can i get this done?
Thank you.