Visual Studio 2008

SQL Data Provider VB.NET Class (2) Example Usage

January 20, 2010
By admin
SQL Data Provider VB.NET Class (2) Example Usage

This class provides a fast and universal method for accessing SQL Server database. Create Instance At first you create an instance of SqlDatabase class. Dim sqldb As New SqlDatabase("Data Source=(local); Initial Catalog= ; UId = ; Pwd = ;") For more information about connection strings, visit ConnectionStrings.com. ExecuteNonQuery Method Executes a Transact-SQL statement against...
Read more »

Tags: ,
Posted in Microsoft, Sql Server 2008, Visual Studio 2008 | No Comments »

SQL Data Provider VB.NET Class (1)

January 19, 2010
By admin
SQL Data Provider VB.NET Class (1)

This class is for simplifying and accelerating working with SQL, using this class is very simple; there is a sample below for this class, which I hope is useful. You can report bugs, opinions and suggestions to me. <<DONWLOAD>> << dataAccess.vb >> Imports System Imports System.IO Imports System.Text Imports System.Data Imports System.Data.SqlClient Namespace SqlDataProvider ''' <summary>...
Read more »

Tags:
Posted in Microsoft, Sql Server 2008, Visual Studio 2008 | No Comments »