How Do You Make Database Connectivity Using Sql Query Analyser Using Vb.Net?
Query Analyzer is a tool separate from VB.NET. It is a tool that comes with SQL Server itself. If you are talking about creating a connection to SQL through VB.NET, create a project and right click the toolbox and go to “Choose Items”. From the dialog window that pops up, select SQLConnection and SQLDataAdaper objects. Drag the SQLConnection object onto your form and it will open a wizard which will allow you to specify the database and connection string. From there you can use it and the dataAdapter to run queries and populate controls on your form. Hope you find this information useful.