Tagged Questions
5
votes
3answers
592 views
what are the best tips for storing images in a database?
Is it appropriate to store the image files in the database? Or it would be better to store only the path of the file in the database, while keeping the file itself on the server?
Are there any other ...
4
votes
3answers
355 views
How do I determine which language/framework is best for our web-based project?
I'm in the early stages of development for a web application that has three developers (myself included) working on it. The project is, at its core, a web-based database that will be used by around ...
3
votes
1answer
616 views
How can I integrate and store sessions in my database, as opposed to storing them in a cookie and file system?
I've never worked with sessions in a database before, and I'm a little unclear on how they work. I have a user class already designed which stores user information: username, password, email etc. I ...