How to Save and retrieve images in MS Access Database using C#?
May 20, 5975 by Hegel J | Posted in Programming & Design
I felt too much trouble for this. So I just thought of helping anyone in touble in case they are in same problem....
(The websites are not giving any straight answers, but mixing with asp.net)
This is simple..
Reading data from an access database - C#
by Martin310
DataSet ds = new DataSet(). OleDbConnection Con = new OleDbConnection(ConString). OleDbDataAdapter Adapter = new OleDbDataAdapter(Command). Data Source=C:\Database. // set the grid's data source.
Source: Reading data from an access database - C#