<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="0.92">
<channel>
	<docs>http://backend.userland.com/rss092</docs>
	<title>VbMySQL Forums</title>
	<link>http://www.vbmysql.com/forums/</link>
	<description>For All VB/MySQL Discussion</description>
	<managingEditor>forumadmin@vbmysql.com</managingEditor>
	<webMaster>forumadmin@vbmysql.com</webMaster>
	<lastBuildDate>Fri, 09 May 2008 16:44:33 GMT</lastBuildDate>
<item>
	<title>VB.NET :: RE: Updating Label with MYsql Data</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=890#890</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=208&quot; target=&quot;_blank&quot;&gt;recycler&lt;/a&gt;&lt;br /&gt;

Posted: Thu May 08, 2008 8:05 am (GMT 0)&lt;br /&gt;
Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;As usually the case in programming, there are several ways you can do this sort of thing. If you ask six people how they'd do it, you get at least six different recommendations.  Here are two suggestions to move you forward:
&lt;br /&gt;

&lt;br /&gt;
1. Use the excellent tutorial series written by Mike Hillier here on this very site as examples. You'll have to dig a bit within them to find where he deals with writing to text boxes, but there's a terrific amount of good general MySQL/VB .NET guidance there. You'll find them at &lt;a href=&quot;http://www.vbmysql.com/articles/vbnet-mysql-tutorials&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://www.vbmysql.com/articles/vbnet-mysql-tutorials&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
2. If you are able to set the names of your text boxes to be identical to the names you use for fields in your MySQL table, then a good low-overhead technique is to use the MySQLDataAdapter object and literally walk through the result set in a For...Each loop as per this example. The actual MySQL query string is in the myQuery variable, and myConnection has already been set up elsewhere:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;Try
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; Using myConnection As New MySqlConnection
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; myConnection.ConnectionString = My.Settings.MySQLConnectionString
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim mMySqlDataReader
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Using myCommand As New MySqlCommand&amp;#40;myQuery, myConnection&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Try
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; myConnection.Open&amp;#40;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Catch exErr As MySqlException
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MsgBox&amp;#40;&amp;quot;Put an error message that's meaningful here - &amp;quot; &amp;amp; exErr.Message&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Try
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mMySqlDataReader = myCommand.ExecuteReader&amp;#40;CommandBehavior.CloseConnection&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' populate the fields
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; While mMySqlDataReader.Read&amp;#40;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'controls outside the tabs are ignored
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim ctl As Control, tb As TabPage
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; For Each tb In TabControl1.TabPages
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; For Each ctl In tb.Controls
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' You could have many segments to deal with the types of form objects you have;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ' This one deals with Textboxes as an example
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If TypeOf ctl Is TextBox Then
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim txt As TextBox = ctl
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'if you name your textboxes the same as your column names, you can do the following&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Try
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; txt.Text = &amp;quot;&amp;quot; &amp;amp; mMySqlDataReader&amp;#40;txt.Name&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Catch
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Try
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If 'ctl Is TextBox
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Next 'ctl 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Next
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End While
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; myConnection.Close&amp;#40;&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Using
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; End Using
&lt;br /&gt;
Catch exErr As MySqlException
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; MsgBox&amp;#40;&amp;quot;Put an error message that's meaningful for this kind of failure here - &amp;quot; &amp;amp; exErr.Message&amp;#41;
&lt;br /&gt;
End Try&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
I've made this slightly more interesting by including code to limit your result-pasting only to text boxes inside a tab control.  This sort of technique allows you to avoid conflict with other text boxes NOT on a tab control that you might want to leave alone.  I leave you to see how to remove that &amp;quot;tab control only&amp;quot; condition if it's not required, or substitute another condition more useful to you.
&lt;br /&gt;

&lt;br /&gt;
I hope these two options get you going again. Good Luck!
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: Updating Label with MYsql Data</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=889#889</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=924&quot; target=&quot;_blank&quot;&gt;adrianfan&lt;/a&gt;&lt;br /&gt;

Posted: Thu May 08, 2008 1:55 am (GMT 0)&lt;br /&gt;
Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hi recycler,
&lt;br /&gt;

&lt;br /&gt;
Thanks for the information.
&lt;br /&gt;

&lt;br /&gt;
I am currently using Visual Basic 2008 Express Edition.
&lt;br /&gt;

&lt;br /&gt;
Forms had been designed. Now I am doing the coding where by the labels are updated from local MYSQL database.
&lt;br /&gt;

&lt;br /&gt;
Done a search. However, none of the search really bring me anywhere close to what I am looking at.
&lt;br /&gt;

&lt;br /&gt;
However, is there a way to store mysql data from query into a variable? If yes, how do I go about doing it?
&lt;br /&gt;

&lt;br /&gt;
Thanks!
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: In two form... when i open connection at my mysql?</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=888#888</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=920&quot; target=&quot;_blank&quot;&gt;goosfancito&lt;/a&gt;&lt;br /&gt;

Posted: Wed May 07, 2008 11:25 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Perfect!
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;recycler wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;In general the expert view seems to be that you keep your connections open for the minimum time. The reason is that they can consume relatively large amounts of system resources, and this mounts up if your system is complicated and/or is multi-user.
&lt;br /&gt;

&lt;br /&gt;
So the recommendation is to open your connection, do whatever you want to do with the database, and then immediately close the connection again, before proceeding with further VB .NET code.
&lt;br /&gt;

&lt;br /&gt;
If your application is working happily the way you have it at the moment AND you do not plan to extend it much, you can probably leave things as they are. But as described above, best practice suggests Open, work with the database, and then immediately Close the connection again. The code in the MySQL connector that bridges the gap between VB .NET and MySQL is designed to open and close connections efficiently and even re-use the same code again if possible, so it doesn't matter that you might open/close the connection repeatedly.
&lt;br /&gt;

&lt;br /&gt;
HTH.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: In two form... when i open connection at my mysql?</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=887#887</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=208&quot; target=&quot;_blank&quot;&gt;recycler&lt;/a&gt;&lt;br /&gt;

Posted: Wed May 07, 2008 10:07 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;In general the expert view seems to be that you keep your connections open for the minimum time. The reason is that they can consume relatively large amounts of system resources, and this mounts up if your system is complicated and/or is multi-user.
&lt;br /&gt;

&lt;br /&gt;
So the recommendation is to open your connection, do whatever you want to do with the database, and then immediately close the connection again, before proceeding with further VB .NET code.
&lt;br /&gt;

&lt;br /&gt;
If your application is working happily the way you have it at the moment AND you do not plan to extend it much, you can probably leave things as they are. But as described above, best practice suggests Open, work with the database, and then immediately Close the connection again. The code in the MySQL connector that bridges the gap between VB .NET and MySQL is designed to open and close connections efficiently and even re-use the same code again if possible, so it doesn't matter that you might open/close the connection repeatedly.
&lt;br /&gt;

&lt;br /&gt;
HTH.
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: In two form... when i open connection at my mysql?</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=886#886</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=920&quot; target=&quot;_blank&quot;&gt;goosfancito&lt;/a&gt;&lt;br /&gt;

Posted: Wed May 07, 2008 8:44 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Very clean,
&lt;br /&gt;
in the tutorial open before make query..... in my projects i open when start application and close when exit application. 
&lt;br /&gt;
I want to hear view.
&lt;br /&gt;

&lt;br /&gt;
Thanks.
&lt;br /&gt;

&lt;br /&gt;
 &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;recycler wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Hello goosfancito:
&lt;br /&gt;

&lt;br /&gt;
Different developers might suggest different approaches to this depending on what else you are doing with connections in your full application.
&lt;br /&gt;

&lt;br /&gt;
If you have not already browsed through them, there are some good tutorials in another part of this website:
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://www.vbmysql.com/articles/vbnet-mysql-tutorials&quot; target=&quot;_blank&quot;&gt;http://www.vbmysql.com/articles/vbnet-mysql-tutorials&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
They inlcude one approach to handling connections. Ernest Ebonat, the moderator of this Forum, has some firm ideas on how this should be done which I'm sure he'll share when he next passes through.
&lt;br /&gt;

&lt;br /&gt;
I hope this helps.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: In two form... when i open connection at my mysql?</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=885#885</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=208&quot; target=&quot;_blank&quot;&gt;recycler&lt;/a&gt;&lt;br /&gt;

Posted: Wed May 07, 2008 5:15 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hello goosfancito:
&lt;br /&gt;

&lt;br /&gt;
Different developers might suggest different approaches to this depending on what else you are doing with connections in your full application.
&lt;br /&gt;

&lt;br /&gt;
If you have not already browsed through them, there are some good tutorials in another part of this website:
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://www.vbmysql.com/articles/vbnet-mysql-tutorials&quot; target=&quot;_blank&quot;&gt;http://www.vbmysql.com/articles/vbnet-mysql-tutorials&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
They inlcude one approach to handling connections. Ernest Ebonat, the moderator of this Forum, has some firm ideas on how this should be done which I'm sure he'll share when he next passes through.
&lt;br /&gt;

&lt;br /&gt;
I hope this helps.
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: Updating Label with MYsql Data</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=884#884</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=208&quot; target=&quot;_blank&quot;&gt;recycler&lt;/a&gt;&lt;br /&gt;

Posted: Wed May 07, 2008 5:07 pm (GMT 0)&lt;br /&gt;
Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hello adrianfan:
&lt;br /&gt;

&lt;br /&gt;
Yes, it is possible.  VB .NET enables you to display something entered in a text box by a user either in another text box or in a label control.  Labels are intrinsically non-editable, and text boxes can optionally be set to be non-editable.
&lt;br /&gt;

&lt;br /&gt;
That answer is probably not very helpful without more detail.  You might find some guidance if you use a search engine to look for 'beginners VB .NET tutorials' or similar.  You can get Visual Basic 2008 Express Edition from the Microsoft website entirely free and experiment away!
&lt;br /&gt;

&lt;br /&gt;
Good Luck!
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: Updating Label with MYsql Data</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=883#883</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=924&quot; target=&quot;_blank&quot;&gt;adrianfan&lt;/a&gt;&lt;br /&gt;
Subject: Updating Label with MYsql Data&lt;br /&gt;
Posted: Wed May 07, 2008 4:48 am (GMT 0)&lt;br /&gt;
Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hi All,
&lt;br /&gt;

&lt;br /&gt;
I am new to coding and would like to check if this could be done. Currently, I have a form whereby the user need to enter their names. After which the queried data will be displayed in either label or any other uneditable format. Is it possible?
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: In two form... when i open connection at my mysql?</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=882#882</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=920&quot; target=&quot;_blank&quot;&gt;goosfancito&lt;/a&gt;&lt;br /&gt;
Subject: In two form... when i open connection at my mysql?&lt;br /&gt;
Posted: Fri May 02, 2008 10:43 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hello,
&lt;br /&gt;

&lt;br /&gt;
I have 2 form, form1 and form2. in form2 i do one query.
&lt;br /&gt;

&lt;br /&gt;
My question is: where i open connection? in form1 ( this call to form2 ) or in form2 before to make query?
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: MySQL Workbench OSS 5.0.17 RC released</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=881#881</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=68&quot; target=&quot;_blank&quot;&gt;ebonat2006&lt;/a&gt;&lt;br /&gt;

Posted: Wed Apr 30, 2008 2:37 pm (GMT 0)&lt;br /&gt;
Topic Replies: 5&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hey mrhutch,
&lt;br /&gt;

&lt;br /&gt;
I know what you meant, some people don’t like Toad. I personally like it very much. I found on him easy to use and fast development. I use Toad for Oracle and IBM DB2 too.
&lt;br /&gt;_________________&lt;br /&gt;Thanks
&lt;br /&gt;

&lt;br /&gt;
Ernest Bonat, Ph.D.
&lt;br /&gt;
Visual WWW, Inc.
&lt;br /&gt;
&lt;a href=&quot;http://www.evisualwww.com&quot; target=&quot;_blank&quot;&gt;www.evisualwww.com&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: Server to VB .NET communications</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=880#880</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=208&quot; target=&quot;_blank&quot;&gt;recycler&lt;/a&gt;&lt;br /&gt;

Posted: Wed Apr 30, 2008 2:17 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Is that book good? - Yes, no reservations at all!
&lt;br /&gt;

&lt;br /&gt;
For ADO.NET, I got  &lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;Microsoft ADO.NET&lt;/span&gt;&lt;/span&gt;, by David Sceppa, 2002 (ISBN 0-7356-1423-7. Possibly a bit out of date now if you need to be really up to date, but I just wanted an easy read on how MySQL connector objects might look in VB .NET applications, and the content of the book can easily be generalised to MySQL from its understandable SQL Server bias.
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: Server to VB .NET communications</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=879#879</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=112&quot; target=&quot;_blank&quot;&gt;mrhutch&lt;/a&gt;&lt;br /&gt;

Posted: Wed Apr 30, 2008 2:06 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;*inventive* ~ lol yeah, I've been called that before.  Hoping that Ernest comes back with a corker...  
&lt;br /&gt;

&lt;br /&gt;
Is that book good?  I was just about to buy an ado.net book but if thats any good I'll get it.
&lt;br /&gt;_________________&lt;br /&gt;&lt;a href=&quot;http://www.skepsolutions.co.uk&quot; target=&quot;_blank&quot;&gt;www.skepsolutions.co.uk&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: Server to VB .NET communications</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=878#878</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=208&quot; target=&quot;_blank&quot;&gt;recycler&lt;/a&gt;&lt;br /&gt;

Posted: Wed Apr 30, 2008 2:00 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hello Matt:
&lt;br /&gt;

&lt;br /&gt;
Presumably you're looking for a generic approach that you can use also outside of VB .NET?
&lt;br /&gt;

&lt;br /&gt;
It sounds as though it should work but it seems (no offence intended) a very &lt;span style=&quot;font-weight: bold&quot;&gt;inventive&lt;/span&gt; solution!   &lt;img src=&quot;http://www.vbmysql.com/forums/images/smiles/icon_biggrin.gif&quot; alt=&quot;Very Happy&quot; border=&quot;0&quot; /&gt; 
&lt;br /&gt;

&lt;br /&gt;
I can't help still thinking there must be a less clunky way to do it, although I'm a bit stuck for better ideas at the moment. Maybe the good Ernest will come up with some brilliant wheeze.
&lt;br /&gt;

&lt;br /&gt;
I'll also re-read my copy of &lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;MySQL Stored Procedure programming&lt;/span&gt;&lt;/span&gt; by Harrison &amp;amp; Feuerstein, O'Reilly, which I cannot recommend highly enough.  There are probably some ideas in there.
&lt;br /&gt;

&lt;br /&gt;
- Mike -
&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: Server to VB .NET communications</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=877#877</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=112&quot; target=&quot;_blank&quot;&gt;mrhutch&lt;/a&gt;&lt;br /&gt;

Posted: Wed Apr 30, 2008 12:39 pm (GMT 0)&lt;br /&gt;
Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;Hi Mike...
&lt;br /&gt;

&lt;br /&gt;
I've got exactly the same issue here!  In SQL Server I used to use raiseerror in SQL to call xp_cmdshell() to run batch files on the server.  It was great, you coulf have a trigger calling a stored procedure which could call any number of batch files / applications server-side....
&lt;br /&gt;

&lt;br /&gt;
and all fairly safely as well.  Now I really need Mysql to fire out to the OS...  The only way I can think of to do it is to create a table with a column for the application (or batch file) path and name in, then get a trigger to update a flag field in the row needed.  Then build a simple windows service with a timer that checks the flag every minute and if it has been updated, and if it has, run the corresponding app/batch file...  then set the flag back..
&lt;br /&gt;

&lt;br /&gt;
I say windows service because in the interests of cross-platform this would be easy enough to do in *nix with shells and cron jobs.
&lt;br /&gt;

&lt;br /&gt;
Whaddya think ?
&lt;br /&gt;_________________&lt;br /&gt;&lt;a href=&quot;http://www.skepsolutions.co.uk&quot; target=&quot;_blank&quot;&gt;www.skepsolutions.co.uk&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
<item>
	<title>VB.NET :: RE: MySQL Workbench OSS 5.0.17 RC released</title>
	<link>http://www.vbmysql.com/forums/viewtopic.php?p=876#876</link>
	<description>Author: &lt;a href=&quot;http://www.vbmysql.com/forums/profile.php?mode=viewprofile&amp;u=112&quot; target=&quot;_blank&quot;&gt;mrhutch&lt;/a&gt;&lt;br /&gt;

Posted: Wed Apr 30, 2008 12:33 pm (GMT 0)&lt;br /&gt;
Topic Replies: 5&lt;br /&gt;&lt;br /&gt;
&lt;span class="postbody"&gt;I agree with recycler..  Current version is much more stable..  I have bever used any of these type of tools to create DB structures from scratch though..  I have a small CMS type project coming up and have decided to use workbench for all the DB design..  We'll have to see if it can hold up and save me time!
&lt;br /&gt;

&lt;br /&gt;
I used to use TOAD a few years ago with oracle..  great tool but the GUI just used to make me feel like I was chewing tin-foil!  really jarred with me, and I couldn't wait to stop using it!
&lt;br /&gt;_________________&lt;br /&gt;&lt;a href=&quot;http://www.skepsolutions.co.uk&quot; target=&quot;_blank&quot;&gt;www.skepsolutions.co.uk&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
</item>
</channel>
</rss>

