<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Provider error &#146;80004005&#146;  Error no escif</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Provider error &#146;80004005&#146;  Error no escif]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 13 Apr 2026 05:27:43 +0000</pubDate>
  <lastBuildDate>Thu, 09 Jun 2005 12:31:40 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=15351</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Provider error &#146;80004005&#146;  Error no escif : It&amp;#039;s ok now. Got a clue from...]]></title>
   <link>https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84861.html#84861</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20764">fastlane</a><br /><strong>Subject:</strong> 15351<br /><strong>Posted:</strong> 09&nbsp;June&nbsp;2005 at 12:31pm<br /><br />It's ok now. Got a clue from another post.<DIV>Have to use &#091;Read&#093;=1 instead of Read=1, in my SQL statement.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 09 Jun 2005 12:31:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84861.html#84861</guid>
  </item> 
  <item>
   <title><![CDATA[Provider error &#146;80004005&#146;  Error no escif :   dj air wrote:try change read=1...]]></title>
   <link>https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84859.html#84859</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20764">fastlane</a><br /><strong>Subject:</strong> 15351<br /><strong>Posted:</strong> 09&nbsp;June&nbsp;2005 at 12:06pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by dj air" alt="Originally posted by dj air" style="vertical-align: text-bottom;" /> <strong>dj air wrote:</strong><br /><br />try change read=1 to read=True<BR><BR>you are cross coding your query there using an Access (true/False ) with MSSQL (1/0)<BR></td></tr></table> <DIV>Tried that and doesn't work. In fact, Read field in tblForum has values of 1,2,3,4, so I don't think it's boolean.</DIV><DIV>&nbsp;</DIV><DIV>If I do the query directly in MS Access, no problem, but the same SQL statement doesn't work when I execute it from my asp page.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 09 Jun 2005 12:06:46 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84859.html#84859</guid>
  </item> 
  <item>
   <title><![CDATA[Provider error &#146;80004005&#146;  Error no escif : try change read=1 to read=True  you...]]></title>
   <link>https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84855.html#84855</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2216">dj air</a><br /><strong>Subject:</strong> 15351<br /><strong>Posted:</strong> 09&nbsp;June&nbsp;2005 at 11:02am<br /><br />try change read=1 to read=True<br><br>you are cross coding your query there using an Access (true/False ) with MSSQL (1/0)<br>]]>
   </description>
   <pubDate>Thu, 09 Jun 2005 11:02:05 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84855.html#84855</guid>
  </item> 
  <item>
   <title><![CDATA[Provider error &#146;80004005&#146;  Error no escif : I think &amp;#034;Error no especificado&amp;#034;...]]></title>
   <link>https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84854.html#84854</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20764">fastlane</a><br /><strong>Subject:</strong> 15351<br /><strong>Posted:</strong> 09&nbsp;June&nbsp;2005 at 10:45am<br /><br />I think "<FONT face=Arial size=2>Error no especificado" </FONT>means "Unspecifed Error".<DIV>I got the same error too. It happens when I tried to execute the following SQL statement:</DIV><DIV>&nbsp;</DIV><DIV>SELECT TOP 5 *</DIV><DIV>FROM tblTopic</DIV><DIV>WHERE Locked = False</DIV><DIV>AND Forum_ID IN</DIV><DIV>(SELECT Forum_ID FROM tblForum WHERE Locked=False AND Read=1)ORDER BY Last_entry_date DESC</DIV><DIV>&nbsp;</DIV><DIV>For my problem, I think it has something to do with the criteria 'Read=1' in the sub-query, I don't get any error when I remove it.</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Thu, 09 Jun 2005 10:45:56 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84854.html#84854</guid>
  </item> 
  <item>
   <title><![CDATA[Provider error &#146;80004005&#146;  Error no escif : im not to sure on that as i can&amp;#039;t...]]></title>
   <link>https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84591.html#84591</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2216">dj air</a><br /><strong>Subject:</strong> 15351<br /><strong>Posted:</strong> 03&nbsp;June&nbsp;2005 at 9:57am<br /><br />im not to sure on that as i can't speak/read spanish, but it looks like a connection erorr.<br><br>make sure you have the correct folder permsssions on the database, alsotry re uplkoading the files to make sure they haven't/weren'tcorruptted during the transferr.<br>]]>
   </description>
   <pubDate>Fri, 03 Jun 2005 09:57:13 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84591.html#84591</guid>
  </item> 
  <item>
   <title><![CDATA[Provider error &#146;80004005&#146;  Error no escif : Cuando entro en el foro me sale...]]></title>
   <link>https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84587.html#84587</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20694">TCL_ZIP</a><br /><strong>Subject:</strong> 15351<br /><strong>Posted:</strong> 03&nbsp;June&nbsp;2005 at 8:54am<br /><br />Cuando entro en el foro me sale el siguiente error:<br><p><font face="Arial" size="2">Provider</font> <font face="Arial" size="2">error '80004005'</font></p><p><font face="Arial" size="2">Error no especificado</font></p><p><font face="Arial" size="2">/forum/common.asp</font><font face="Arial" size="2">, línea 260<br></font></p><p><font face="Arial" size="2">y no me detecta ningun foro :S<br>_____________________________________________________________<br>When I start the forum, send me this error:<br></font></p><p><font face="Arial" size="2">Provider</font> <font face="Arial" size="2">error '80004005'</font></p><p><font face="Arial" size="2">Error no especificado</font></p><font face="Arial" size="2">/forum/common.asp</font><font face="Arial" size="2">, línea 260</font><p><font face="Arial" size="2"><br></font></p><br>]]>
   </description>
   <pubDate>Fri, 03 Jun 2005 08:54:26 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/provider-error-80004005-error-no-escif_topic15351_post84587.html#84587</guid>
  </item> 
 </channel>
</rss>