Dot Net WindowsForms Question:

How save rerecord in the database?

Tweet Share WhatsApp

Answer:

Dim Query
Query="insert into TableName(username)values('" &
txt_username.text & "')"
Dim cmd as sqlclient.sqlcommand=new
sqlclient.sqlcommand(Query,connection)
cmd.ExecuteNonquery()

Download Dot Net WindowsForms PDF Read All 21 Dot Net WindowsForms Questions
Previous QuestionNext Question
How barcode create in the report?How insert record in the database?