Hi. In PHP I used:
to get the total number of rows in a given table.
What is the equivalent in VB.NET to get total rows and, might as well get it, columns from a given MySQL table?
Please note that all VB.NET <-> MySQL connections are already successfully made.
HTML Code:
$result = mysqli_query($link,$select);
$row_num = mysqli_num_rows($result);
What is the equivalent in VB.NET to get total rows and, might as well get it, columns from a given MySQL table?
Please note that all VB.NET <-> MySQL connections are already successfully made.