If you mean can you save a file into a BLOB/Image/Binary database column, then the answer is Yes.
How to do it?
Define a property that is based on a byte array and map it to the Image column in the database
You then need to change your application so it can convert the file to binary and restore from binary as appropriate (The framework won't do that for you).
- Richard.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi.
I can save a file.txt in a DataBase using your framework.
saludos
Victo (Madrid - Spain)
If you mean can you save a file into a BLOB/Image/Binary database column, then the answer is Yes.
How to do it?
Define a property that is based on a byte array and map it to the Image column in the database
You then need to change your application so it can convert the file to binary and restore from binary as appropriate (The framework won't do that for you).
- Richard.
Hi.
I am trying use the following code:
dim f as System.io.FileStream = new System.io.FileStream(path,IO.file.mode.open, io.fileAccess.read)
obj.fichero=f
obj.save
Error " Inner exception message: El objeto debe implementar IConvertible"
For get it.