I am accessing an MS Access DB using JavaScript:
var conn = new ActiveXObject("ADODB.Connection");
conn.open("Provider=Microsoft.ACE.OLEDB.12.0;Data Source="C:/Myfile.accdb";Persist Security Info=False", "", "");
var rs = new ActiveXObject("ADODB.Recordset");
rs.open("SELECT * FROM MyTable", conn, 2, 3);
One of the columns is an attachment field, containing one or more images. How can I access those images and display them in a web browser?
If it was a text field, I would simply use
rs.Fields(x).Value
But this seems not to work with files.