<?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>Keyboard Face &#187; VBScript</title>
	<atom:link href="http://www.keyboardface.com/archives/category/vbscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.keyboardface.com</link>
	<description>when you find QWERTY imprinted on your cheek - it&#039;s time to go to bed.</description>
	<lastBuildDate>Sat, 03 Dec 2011 17:36:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ODBC and ASP to connect to a MySQL database.</title>
		<link>http://www.keyboardface.com/archives/2006/07/31/odbc-and-asp-to-connect-to-a-mysql-database/</link>
		<comments>http://www.keyboardface.com/archives/2006/07/31/odbc-and-asp-to-connect-to-a-mysql-database/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 18:51:13 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://www.keyboardface.com/archives/2006/07/31/odbc-and-asp-to-connect-to-a-mysql-database/</guid>
		<description><![CDATA[My God! This took hours to figure out. Here is the solution to using ODBC and ASP to connect to a MySQL database. 1. Install the latest MySQL engine. I believe it is currently 4.1.9 2. Install the MySQL Admin and MySQL Query Browsers &#8211; these are just helpful &#8211; not essential. 3. Install MyODBC-Standard-3.51.9-win.msi [...]]]></description>
			<content:encoded><![CDATA[<p>My God!<br />
This took hours to figure out.  Here is the solution to using ODBC and ASP to connect<br />
to a MySQL database.</p>
<p>1. Install the latest MySQL engine. I believe it is currently 4.1.9</p>
<p>2. Install the MySQL Admin and MySQL Query Browsers &#8211; these are just helpful &#8211; not essential.</p>
<p>3. Install MyODBC-Standard-3.51.9-win.msi (or exe) Note this is NOT the latest version. The latest version doesn&#8217;t work. </p>
<p>4. In MySQL Admin, connect to your database and make sure that &#8220;Use Old Passwords is checked.&#8221;</p>
<p>5. Follow the instructions here: </p>
<p>Open the MySQL commandline utility (located in MySQL Admin and elsewhere) and type: </p>
<p>mysql> USE mysql<br />
mysql> UPDATE user SET Password = OLD_PASSWORD(&#8216;mypass&#8217;)<br />
    -> WHERE Host = &#8216;localhost&#8217; AND User = &#8216;root&#8217;;<br />
mysql> FLUSH PRIVILEGES;</p>
<p>SOURCE: http://mysqld.active-venture.com/Old_client.html</p>
<p>That&#8217;s it. It should work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keyboardface.com/archives/2006/07/31/odbc-and-asp-to-connect-to-a-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regular Expression Search Engine</title>
		<link>http://www.keyboardface.com/archives/2006/03/24/regular-expression-search-engine/</link>
		<comments>http://www.keyboardface.com/archives/2006/03/24/regular-expression-search-engine/#comments</comments>
		<pubDate>Fri, 24 Mar 2006 18:13:06 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Classic ASP]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://www.keyboardface.com/archives/2006/03/24/regular-expression-search-engine/</guid>
		<description><![CDATA[Wow! This is a great site: RegExLib (Regular Expression Library) Excuse my exuberance, but I&#8217;ve been creating a lot of long regular expressions from scratch lately and it&#8217;s time consuming! This is a great resource for anyone wanting to use regular expressions in their code.]]></description>
			<content:encoded><![CDATA[<p>Wow! This is a great site: <a href="http://regexlib.com/">RegExLib (Regular Expression Library)</a></p>
<p>Excuse my exuberance, but I&#8217;ve been creating a lot of long regular expressions from scratch lately and it&#8217;s time consuming! This is a great resource for anyone wanting to use regular expressions in their code. </p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.keyboardface.com/archives/2006/03/24/regular-expression-search-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBScript Array Length</title>
		<link>http://www.keyboardface.com/archives/2005/11/21/vbscript-array-length/</link>
		<comments>http://www.keyboardface.com/archives/2005/11/21/vbscript-array-length/#comments</comments>
		<pubDate>Mon, 21 Nov 2005 22:31:07 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Classic ASP]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://www.keyboardface.com/archives/2005/11/21/vbscript-array-length/</guid>
		<description><![CDATA[Apparently there is no direct method to determine the length of an array in VBScript. The best way I could find is to use UBound(ArrayName). This will return the upper limit of the array. Unfortunately, it doesn&#8217;t account for empty items in the array. In the example below Length will be equal to 10, not [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently there is no direct method to determine the length of an array in VBScript. The best way I could find is to use UBound(ArrayName). This will return the upper limit of the array. Unfortunately, it doesn&#8217;t account for empty items in the array. In the example below Length will be equal to 10, not 1.</p>
<p>Dim NewArray(10)<br />NewArray(0) = &quot;Apple&quot;<br />Length = UBound(NewArray) &#8216;Length is equal to 10, not 1</p>
<p>Here is a good link to VBScript Array functions.</p>
<p><a href="http://www.shocknet.org.uk/defpage.asp?pageID=30">http://www.shocknet.org.uk/defpage.asp?pageID=30</a></p>
<p>If you know of a better way to determine the length, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.keyboardface.com/archives/2005/11/21/vbscript-array-length/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

