<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>Proverbial Monkey &#187; intranets</title> <atom:link href="http://www.proverbialmonkey.co.uk/tag/intranets/feed/" rel="self" type="application/rss+xml" /><link>http://www.proverbialmonkey.co.uk</link> <description>Nothing witty to put here I&#039;m afraid...</description> <lastBuildDate>Thu, 14 Apr 2011 10:45:47 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.1.1</generator> <item><title>Connecting to a MS Access Database using JavaScript</title><link>http://www.proverbialmonkey.co.uk/connecting-to-a-ms-access-database-using-javascript/</link> <comments>http://www.proverbialmonkey.co.uk/connecting-to-a-ms-access-database-using-javascript/#comments</comments> <pubDate>Thu, 20 Dec 2007 16:23:57 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Development]]></category> <category><![CDATA[intranets]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[MS Access]]></category> <guid
isPermaLink="false">http://www.proverbialmonkey.co.uk/connecting-to-a-ms-access-database-using-javascript/</guid> <description><![CDATA[I have been searching for a technique to connect to a MS Access database solely using JavaScript for some time now. Until recently I have been totally out of luck. Before I go on and reveal the method behind the madness let me make a few things crystal clear! This is 100% advised against for [...]]]></description> <content:encoded><![CDATA[<p>I have been searching for a technique to connect to a MS Access database solely using JavaScript for some time now. Until recently I have been totally out of luck.</p><p>Before I go on and reveal the method behind the madness let me make a few things crystal clear!</p><p><strong>This is 100% advised against for anything other than in-house work e.g. Intranets as it is not a secure method.</strong></p><p>So anyway here&#8217;s the code to achieve it. (line wraps marked »)</p><pre><code>
var conn = new ActiveXObject("ADODB.Connection");
var rs = new ActiveXObject("ADODB.Recordset");
conn.ConnectionTimeout = 15;
conn.CommandTimeout = 15;
var connStrng = "Provider=Microsoft.Jet.OLEDB.4.0; »
Data Source=database.mdb; »
Persist Security Info=False"; // remember to escape \ if needed.
conn.open(connStrng);
rs.open("SQL Statement", conn);
var fields=new Array();
var i=0; while(!rs.eof) {
   var  = fields[i]=rs.fields("Field Name").value;
   i++; rs.moveNext();
};
rs.close();
conn.close();
</code></pre><p>Hope it helps.</p> ]]></content:encoded> <wfw:commentRss>http://www.proverbialmonkey.co.uk/connecting-to-a-ms-access-database-using-javascript/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Utopian Intranets</title><link>http://www.proverbialmonkey.co.uk/utopian-intranets/</link> <comments>http://www.proverbialmonkey.co.uk/utopian-intranets/#comments</comments> <pubDate>Tue, 06 Nov 2007 00:03:51 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Web talk]]></category> <category><![CDATA[intranets]]></category> <category><![CDATA[web development]]></category> <guid
isPermaLink="false">http://www.proverbialmonkey.co.uk/utopian-intranets/</guid> <description><![CDATA[While reading Paul Boag&#8216;s latest blog, offering it got me thinking about intranets and my experience with them from the point of a web master. Here&#8217;s what I have to offer on the subject; Asking doesn&#8217;t mean giving Just because a colleague asked for a specific &#8220;something&#8221; doesn&#8217;t mean giving it to them, you have [...]]]></description> <content:encoded><![CDATA[<p>While reading <a
href="http://www.boagworld.com" rel="acquaintance met">Paul Boag</a>&#8216;s latest blog, offering it got me thinking about intranets and my experience with them from the point of a web master.</p><p>Here&#8217;s what I have to offer on the subject;</p><h4>Asking doesn&#8217;t mean giving</h4><p>Just because a colleague asked for a specific &#8220;something&#8221; doesn&#8217;t mean giving it to them, you have to consider a few facts with the most important being <strong>will it be used?</strong> If it&#8217;s not going to be used you will have wasted your time and to a company time is money. You also have to ask yourself <strong>does it solve a problem</strong> or are you simply re-inventing the wheel?</p><h4>Money, Money, Money</h4><p>I wholeheartedly agree with Paul regarding managements perception that the intranet is simply a money pit, they just don&#8217;t seem to get the fact that it does generate a <abbr
title="Return On Investment">ROI</abbr> in regards to huge productivity gains</p><h4>It&#8217;s more than just communication</h4><p>Another management perception is that the intranet is just another communication tool. How wrong could they be? The intranet is able to keep colleagues updated a lot easier than most communication tools, but it&#8217;s uses don&#8217;t stop there. Colleagues are able to search for that needed contact, they can give direct feedback and for the ability to find certain forms or procedures.</p><h4>Simple to use</h4><p>I can&#8217;t stress this point enough. The intranet must be quicker, better and overall less painful than the older way otherwise the older way will simply be too easy to fall back on.</p> ]]></content:encoded> <wfw:commentRss>http://www.proverbialmonkey.co.uk/utopian-intranets/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
