Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>To me it seems you are using automation in IIS (Server.Mappath... ans Response.Write...) ?</p> <p>IF this is the case THEN this is NOT supported by MS - see <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;q257757#kb2" rel="nofollow">http://support.microsoft.com/default.aspx?scid=kb;EN-US;q257757#kb2</a></p> <p>Reasons are several: starting from security and not ending with the fact that office was never built for such server usage scenario...</p> <p>I don't understand why you are not just using ODBC from C# instead of MS Access ? Perhaps you could show some more surce code or the exception/error message... ?</p> <p><strong>EDIT - after long discussion (see comments):</strong><br/></p> <p>IF you need to access the Faircom DB then add a <code>using System.Data.Odbc;</code> and try<br/></p> <pre><code>OdbcConnection DbConnection2Salisbury = new OdbcConnection("DSN=Salisbury;DBQ=S:\;CODEPAGE=1252;"); DbConnection2Salisbury.Open(); </code></pre> <p>After this you are able to use ADO.NET to query etc. the Faircom DB i.e. with <code>OdbcCommand</code> and <code>OdbcDataReader</code> etc.</p> <p>For some information see <a href="http://msdn.microsoft.com/en-us/library/system.data.odbc.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.data.odbc.aspx</a><br/> For sample code see <a href="http://www.easysoft.com/developer/languages/csharp/ado-net-odbc.html" rel="nofollow">http://www.easysoft.com/developer/languages/csharp/ado-net-odbc.html</a><br/></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload