<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>MySql</title>
        <link>http://onteorasoftware.com/category/21.aspx</link>
        <description>MySql</description>
        <language>en-US</language>
        <copyright>Ken Tucker</copyright>
        <generator>Subtext Version 2.1.2.2</generator>
        <item>
            <title>MySql Full Text searches</title>
            <link>http://blog.onteorasoftware.net/archive/2007/09/16/mysql-full-text-searches.aspx</link>
            <description>&lt;h3 align="center"&gt;MySql Full Text searches&lt;/h3&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;p&gt;
You must create a table that uses the MyISAM engine to support full text searches in MySql. Here is an example on how to create the table. 
&lt;/p&gt;
&lt;p&gt;
&lt;br /&gt;
&lt;br /&gt;
        conn = New MySqlConnection(strConn)
&lt;/p&gt;
&lt;p&gt;
        conn.Open()&lt;br /&gt;
        Dim sbCmd As New System.Text.StringBuilder
&lt;/p&gt;
&lt;p&gt;
        sbCmd.Append("Create Table If Not Exists MyBlog ")&lt;br /&gt;
        sbCmd.Append("(PostDate DateTime NOT NULL PRIMARY KEY, ")&lt;br /&gt;
        sbCmd.Append("BlogEntry Text, FullText(BlogText))")&lt;br /&gt;
        sbCmd.Append(" Engine = MyISAM")&lt;br /&gt;
        cmd = New MySqlCommand(sbCmd.ToString, conn)&lt;br /&gt;
        cmd.ExecuteNonQuery()&lt;br /&gt;
        conn.Close()&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Use the MySql Match Against query to preform a full text search 
&lt;/p&gt;
&lt;br /&gt;
&lt;a href="http://dev.mysql.com/doc/mysql/en/fulltext-search.html"&gt;Match Against Query Info&lt;/a&gt; 
&lt;img src="http://blog.onteorasoftware.net/aggbug/141.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ken Tucker</dc:creator>
            <guid>http://blog.onteorasoftware.net/archive/2007/09/16/mysql-full-text-searches.aspx</guid>
            <pubDate>Sun, 16 Sep 2007 17:53:43 GMT</pubDate>
            <wfw:comment>http://blog.onteorasoftware.net/comments/141.aspx</wfw:comment>
            <comments>http://blog.onteorasoftware.net/archive/2007/09/16/mysql-full-text-searches.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://blog.onteorasoftware.net/comments/commentRss/141.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>