Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can I read a link from mysql databse???
#8
mnxford Wrote:bro if u guys don't help us then h0w we can learn s0mething???
So you want to learn ? ok look in the msgbox it says the error occurs on line 26 and by my calculations that line is this one
[code2=vbnet]ftpp = data(4).ToString[/code2]
second information you can get from the error is the type "IndexOutOfRange" that means that index 4 does not exist in your table. i suggest the folowing corection to your code
[code2=vbnet]vlink = data(0).ToString
dlink = data(1).ToString
ftpu = data(2).ToString
ftpp = data(3).ToString[/code2]

Try this code, if you get an error again and still want to learn the next lesson is debugging.

Here's how to debug:

Put a breakpoint at the begining of the try/catch block, you can do that by clicking next to were you see the green or yellow line, a red dot shold apear.

When the breakpoint is hit and you are see the code again press F10 , that will take you through the code step by step, line by line.

Check the values, you can do taht in 2 ways , either by going to the locals tab in the bottom part of visual studio or by hovering over the strings with the mouse.Check the 4 strings(vlink,dlink,ftpu,ftpp) and see if the right values are assigned. Beware that the values are assigned after the yellow line has passed the string.
Sssssssssoftware developer...


Messages In This Thread
Re: How can I read a link from mysql databse??? - by Snake_eyes - 03-26-2013, 02:05 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I use Listview to delete MySQL DB records kismetgerald 10 31,991 11-28-2012, 05:19 PM
Last Post: brandonio21
  [SOLVED] MySQL Update Query - What am I doing wrong? kismetgerald 11 40,409 10-18-2012, 07:16 PM
Last Post: brandonio21
  How do I fill my form with MySQL data based on Combobox? kismetgerald 8 25,220 10-14-2012, 09:05 PM
Last Post: brandonio21
  Read certain lines brco900033 3 13,910 09-26-2012, 03:56 PM
Last Post: brandonio21
  Read and delete lines brco900033 6 21,316 09-16-2012, 09:38 AM
Last Post: brandonio21
  Help with creating an INSERT statement using MySQL kismetgerald 4 15,966 08-30-2012, 03:03 PM
Last Post: brandonio21
  MySQL Database Issue Moldraxian 7 27,765 08-13-2012, 08:58 PM
Last Post: brandonio21
  MySql Database Queries in VB.Net Moldraxian 6 21,013 07-26-2012, 03:44 PM
Last Post: Moldraxian
  How to Package MySql Connector and MySql Program? Moldraxian 3 14,012 07-20-2012, 12:23 PM
Last Post: brandonio21
  MySql Help Blackrobot 3 13,775 04-06-2012, 03:49 AM
Last Post: xolara

Forum Jump:


Users browsing this thread: 1 Guest(s)