Shared Tutorials
Tutorials Shared by the Internet Community
Advertisements
| Top Tutorials | New Tutorials | Submit | Login | Register |
Tutorial Basic Detail
Executing Transact-SQL UPDATE statement
In this example, we will edit some records from a database.http://www.dotnetindex.com/articles/53_Executing_Transact_SQL_UPDATE_statement.asp
Total Hits: 2774
Total Votes: 36 votes
Average Rating: 2.5 out of 5
Category: ASP/Database Concepts
Description:
In this example, we will edit some records from a database. This source code helps us to edit records to database without slowing down databasedim strConnection
strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("db/our_db.mdb")
'strConnection = "Provider=SQLOLEDB;Server=ASP;User ID=sa;Password=;Database=MY_DB;"
Set objConn = Server.CreateObject ("ADODB.Connection")
objConn.open strCon
objConn.execute("Update myTable Set field1 = '"& some_value &"' Where id = "& ID &"")
Rating Detail
| Stars | Percentage | Total Vote |
|---|---|---|
![]() |
![]() ![]() 16.67% |
6 |
![]() ![]() |
![]() ![]() 16.67% |
6 |
![]() ![]() ![]() |
![]() ![]() 16.67% |
6 |
![]() ![]() ![]() ![]() |
![]() ![]() 16.67% |
6 |
![]() ![]() ![]() ![]() ![]() |
![]() ![]() 16.67% |
6 |




16.67%

16.67%

16.67%

16.67%

16.67%