In this article, i will examine how to store and retrieve binary files such as image or PDF into MS SQL or Oracle database.
Reading a File into a Byte Array
1: byte[] m_barrImg = null;
2: using (FileStream fs = new FileStream(FileName, FileMode.Open, FileAcce...
[More]