Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Re: SQL In VB.NET
[code] Module1.vb Imports System.Data.SqlClient Module Module1 Public Con As SqlConnection Public constr As String Public usertype As String Public Sub main() constr = "server=ANIKET\SQLEXPRESS;database=myjob ;Trusted_connection=True" Con = New SqlConnection(constr) End Sub End Module Form1.vb Imports System.Data Imports System.Data.SqlClient Imports System.Data.SqlClient.SqlException Public Class Form1 Inherits System.Windows.Forms.Form Dim da As SqlDataAdapter Dim …
The End.
aniketcool