Answer Posted / bhagwat prasad sharma
Steps: SqlConnection with vb.net code
'' Code
imports system.data.sqlclients
Public Class Form1 Inherits System.Windows.Forms.Form
'' createconnection with database
dim con as new sqlconnection("server=bps; database=company; user id=sa; password=admin")
private sub button1_click()
dim str as string="insert into employee (roll_no,name,class) values(@roll_no,@name,@class)"
dim cmd as new sqlcommand =(str,con)
if con.state=connectionstate.closed than
con.open()
'' parameter passing
cmd.parameters.add("@roll_no",type.int)
cmd.parameters.add("@name",type.varchar)
cmd.parameters.add("@class",type.varchar)
cmd.parameters("@roll_no").value= txtroll.text
cmd.parameters("@name").value=txtname.text
cmd.parameters("@class").value= txtclass.text
dim i as integer
i=cmd.executeNonquery
if i>o
msgbox("addition successful")
else
msgbox("sum mistakes into add")
end if
' end of connection
con.close()
end sub
end class
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain what are delegates?
List of words of preprocessor in .net?
What’s the difference between response .redirect and server.transfer?
Is it possible to apply themes to an asp.net application? If yes, then how?
What are Authentication and Authorization?
How long do session variables last?
What is the benefit of WebAPI over WCF?
What are the differences between the response.write() and response.output.write()?
What is the function used for removing an event listener?
How can we access static variable?
What is asp.net and how it works?
Describe how to implement globalization and localization in the use interface in .net.
What is GAC in ASP.NET 2.0
What is directive in asp net?
Is LINQ performance wise better or using sqlcommand?