05-15-2016 02:22 AM
05-15-2016 03:04 AM
Save filepath as string
05-15-2016 07:36 AM
The simplest solution is to just store the path as a string in the database. This requires you to follow some guidelines on where your files will go out on the server, preferably with the database.
Another solution, if using SQL, is the FileStream. It allows the SQL database to keep the files in its own way (folder location stored with the database). So the files are not exactly in the database and you can access the files quite quickly. This does require using some .NET nodes and a little setting up with the database.
05-15-2016 08:13 AM
05-15-2016 10:46 PM
05-15-2016 10:50 PM
05-16-2016 02:24 AM
@mikeporter wrote:
So what you are saying is that the pictures aren't very important and it's OK to have them be lost?
If they are not in the database they *will* get lost. It's not a matter of if it will happen. It's a matter of when.
Better to use a DB server that can store all your data -- and by the way, images don't have to be large thanks to data compression. Likewise, any database will slow down over time if it is not maintained.
If they are saved as files on the database server it's about as likely they are deleted as other data.
/Y
05-16-2016 08:27 AM