Locations of visitors to this page
Onteora Software - July 2005

Onteora Software

Ken Tucker's Blog

About the author

Author Name is someone.
E-mail me Send mail

Recent posts

Recent comments

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008

MySql Full Text searches

MySql Full Text searches



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.



        conn = New MySqlConnection(strConn)

        conn.Open()
        Dim sbCmd As New System.Text.StringBuilder

        sbCmd.Append("Create Table If Not Exists MyBlog ")
        sbCmd.Append("(PostDate DateTime NOT NULL PRIMARY KEY, ")
        sbCmd.Append("BlogEntry Text, FullText(BlogText))")
        sbCmd.Append(" Engine = MyISAM")
        cmd = New MySqlCommand(sbCmd.ToString, conn)
        cmd.ExecuteNonQuery()
        conn.Close()

Use the MySql Match Against query to preform a full text search


Match Against Query Info

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: MySql
Posted by Ken Tucker on Wednesday, July 27, 2005 12:25 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Image Buttons

Image Buttons



I have been working on making image buttons that change color when the mouse is over them. I have created transparent gifs using vb.net for the buttons. I use a transparent background because the image will display the background color of the image button. I change the backcolor with java script.



The code I used to create the transparent gif is based on code from Bob Powells

GDI+ FAQ

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: GDI
Posted by Ken Tucker on Tuesday, July 26, 2005 11:27 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Blog up and running

Blog up and running



Well I got my blog up and running today. I am using a MySql database for storing the data. My web host brinkster offers Sql Server, MS Access, and MySql database storage. I seam to get a lot of data access errors using MS Access on the web when I have too many users at once. I figured I will try the MySql. Seams to be a very powerfull database full of features. I still prefer to use Sql Server.




In addition to this site I also maintain a VB.Net and VB-Tips website with Cor Ligthert. I am starting to make some Visual Studio .Net 2005 tips. Hope to be able to start posting some soon.


VB-Tips

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Archive
Posted by Ken Tucker on Tuesday, July 19, 2005 9:07 AM
Permalink | Comments (0) | Post RSSRSS comment feed