<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>The Honey House Buzz - Databases</title>
			<link>http://honeyhousedesigns.com/blog/index.cfm</link>
			<description>Musings about Life, Momy-hood, Teenagers, ColdFusion, and Being a GeekGirl in the South</description>
			<language>en-us</language>
			<pubDate>Thu, 02 Sep 2010 11:15:03 -0600</pubDate>
			<lastBuildDate>Sat, 07 Aug 2010 17:36:00 -0600</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>support@honeyhousedesigns.com</managingEditor>
			<webMaster>support@honeyhousedesigns.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>support@honeyhousedesigns.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>The Honey House Buzz</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Goodby CFUnited, Perhaps next year</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2010/8/7/Goodby-CFUnited-Perhaps-next-year</link>
				<description>
				
				I have planned unsuccessfully to get to CFUnited. But the for last 6+ years, other obligations have interfered for that week..... So, I get my oxes out of the ditch (which included a funeral, a few surgeries to repair cycling injuries, mom-in-law getting 2 hip replacements...you get the picture) to clear July-August 2011 to attend Next Year -- 2011...

(sigh) My friend Gene Godsey broke that news to me, no next year.... (sigh).

So Here&apos;s My VOTE: Have it somewhere, somehow, someway and Honey House Web Designs WILL be there! PLease, please (please).... 
				</description>
				
				<category>File Conversions</category>				
				
				<category>Fireworks</category>				
				
				<category>Cycling</category>				
				
				<category>Databases</category>				
				
				<category>ColdFusion</category>				
				
				<category>Coldfusion Hosting</category>				
				
				<category>CSS</category>				
				
				<category>Family</category>				
				
				<category>HHWD</category>				
				
				<category>Contribute</category>				
				
				<category>Dreamweaver</category>				
				
				<pubDate>Sat, 07 Aug 2010 17:36:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2010/8/7/Goodby-CFUnited-Perhaps-next-year</guid>
				
			</item>
			
			<item>
				<title>Coldfusion Support Help -- Ongoing support &amp; Maintenance</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/6/27/Coldfusion-Support-Help--Ongoing-support--Maintenance</link>
				<description>
				
				HHWD is turning over the reins of a project to a new developer to provide onging development and support of a large international website project (entertainment based).   The client has immediate needs and prefers a male developer, readily available for future project development. 

If you are well versed in 
Coldfusion 8, CFIMAGE &amp; CFCs
Project Seven
MySQL 5
SoThink DHTML menu
Paypal Processing
CSS based design

Please contact HHWD at 803-648-8556 or email us at hhd - at - honeyhousedesigns (you know the schpeal). 

HHWD will assist in providing turnover of the project and provide the new developer with any technical questions regarding design and development.

The new developer will become the primary contact with the client and will NOT be in a sub-contract relationship. The pay is nice, the project in very interesting. It simply no longer fits our business model for projects. 
				</description>
				
				<category>Internet</category>				
				
				<category>Databases</category>				
				
				<category>snippets</category>				
				
				<category>Java/Jrun</category>				
				
				<category>HHWD</category>				
				
				<category>ColdFusion</category>				
				
				<category>Project Seven</category>				
				
				<category>Dreamweaver</category>				
				
				<category>XP</category>				
				
				<pubDate>Fri, 27 Jun 2008 08:33:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/6/27/Coldfusion-Support-Help--Ongoing-support--Maintenance</guid>
				
			</item>
			
			<item>
				<title>Select Random Records in MySQl, SQL Server &amp; Oracle, etc</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/1/24/Select-Random-Records-in-MySQl-SQL-Server--Oracle-etc</link>
				<description>
				
				Quite often a user will want a random display of items from his database. Ads, Thumbnails, Topics... whatever.... Here are some quick queries that can perform just that task for you:

Scenario: I want to select 5 records from my famous-foo table in no particular order, and I have no idea how many records are there....

In MySQL:
&lt;code&gt;
select * from famous-foo order by rand() limit 5
&lt;/code&gt;

In SQL Server (7, 2000+):
&lt;code&gt;
select top 5 * from famous-foo order by newid()
&lt;/code&gt;

In Oracle:
&lt;code&gt;
select * from famous-foo sample(5)
&lt;/code&gt;
(note this returns 5% of records, so you&apos;ll have to handle potentially extra records in your code, but is a tad quicker than creating an inline view as below:)
&lt;code&gt;
select * from (select * from famous-foo order by dbms_random.value) where rownum = 5
&lt;/code&gt;

In PostreSQL
&lt;code&gt;
select * from famous-foo order by random() limit 5
&lt;/code&gt; 
				</description>
				
				<category>snippets</category>				
				
				<category>ColdFusion</category>				
				
				<category>Internet</category>				
				
				<category>Databases</category>				
				
				<pubDate>Thu, 24 Jan 2008 09:02:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/1/24/Select-Random-Records-in-MySQl-SQL-Server--Oracle-etc</guid>
				
			</item>
			
			<item>
				<title>Beware maintaining Customer Balance Information in Coldfusion&apos;s Traditional Sessions</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2007/10/24/Beware-maintaining-Customer-Balance-Information-in-Coldfusions-Traditional-Sessions</link>
				<description>
				
				If you are working with logged in users, Coldfusion has an excellent method of maintaining client information in session variables.  Typically, However, beware of session independence between different types of browsers when using traditional ColdFusion session variables (CFID &amp; CFSESSION). When a session variable is updated in one browser, it is not automatically in other browsers. While not a big deal if the variable doesn&apos;t change much, such as the user&apos;s email or name, or even ID number. 

On the other hand, if the variable  contains information that would be &lt;strong&gt;business critical or updated frequently&lt;/strong&gt;, such as account balances, or time logged, using CF &apos;vanilla&apos; session variables (where the session ID are determined by CF administrator) may not be the proper place to store the information to be relied upon.

If a user uses two computers both logged in at the same time, or two different user log in with the same account information simultaneously, we already realize that frequently updated information may lag and not reflect actual values due to activity in the different sessions updating the session variables without regard to the other session.  This same phenomena occurs  [More]
				</description>
				
				<category>Internet</category>				
				
				<category>Adobe</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<category>Databases</category>				
				
				<pubDate>Wed, 24 Oct 2007 09:54:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2007/10/24/Beware-maintaining-Customer-Balance-Information-in-Coldfusions-Traditional-Sessions</guid>
				
			</item>
			
			<item>
				<title>Converting CF Queries from MS SQL to MySQL</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2007/8/7/Converting-CF-Queries-from-MS-SQL-to-MySQL</link>
				<description>
				
				MySQL has really come along as a database product from when I first began working with it over 10 years ago. It is so good, that HHWD now recommends using it for most new client database applications.

We have even migrated some older MS SQL database applications that didn&apos;t really need all the beef MSSQL offered (and weren&apos;t thrilled with the extra hosting cost).

One of the best product to migrate from one db to another is MySQL&apos;s own  &lt;a href=&apos;http://www.mysql.com/products/tools/migration-toolkit/&apos; target=&apos;_blank&apos;&gt;MySQL Migration Tool &lt;/a&gt;. This does a great job of transferring over table structures and data, with only nominal updating of Views, and some keys.

However, what do you do when you have the database successfully migrated and in your CF Administrator but still have many select statements that are MSSQL compliant, but not MySQL?  Here is  a list of quick search/replaces that can be performed on your CFCs and queries that should get your Coldfusion app running successfully with your new MySQL database:

&lt;strong&gt;For All &lt; cfquery&gt; select...&lt; /cfquery&gt; 
Simple Find &amp; Replace:&lt;br /&gt;&lt;/strong&gt;
MSSQL&apos;s Getdate() is MySQL&apos;s curdate() (or now() ) &lt;br /&gt;
Newid() is rand() &lt;br /&gt;
Len() is length()
(NOT to be confused with CFMX len() function, this is only a database query &apos;length&apos;)

&lt;strong&gt;Table Structure: &lt;/strong&gt;&lt;br /&gt;
Money datatype is decimal (9,2)&lt;br /&gt;
Bit datatype needs to be changed. HHWD uses TINYINT

&lt;strong&gt;Other items:&lt;/strong&gt;&lt;br /&gt;
Select TOP n * from table is now&lt;br /&gt;
select * from table LIMIT n

Be aware that Multiple timestamp fields in the same table also do not get automatically &apos;stamped&apos; in MySQL. You may have to manually save a timestamp in your query

Also some correlated subqueries will not behave the same, so be sure to test them out in MySQL 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Databases</category>				
				
				<pubDate>Tue, 07 Aug 2007 19:29:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2007/8/7/Converting-CF-Queries-from-MS-SQL-to-MySQL</guid>
				
			</item>
			</channel></rss>