as i have not much knowledge & experience in Database and i have to usexml or csv for storing the data as DB. please let me know which one should i prefer?
There is table : layout
colomn : 3
session-id : (user-id will be used on later stage)
project-name : ( string type )
upload-folder : string type (optional, it can be null)
A session-id(user id) can have many project-name but the name should be unique for one session id but another session-id may have the same project-name.
upload-folder is optional (can be null)
Ex.
tavle : myTable
session-id | project-name | upload-folder |
--------------------------------------------------
01A | myProject | upload-1
-------------------------------------------------
01A | yourProj | upload-2
-------------------------------------------------
02B | myProject | upload-1
-------------------------------------------------
03C | myProject | upload-3
-------------------------------------------------
please tell me, which one would be the better choice for this requirement