Hej! En bra artikel: <code>Hur gör man en databas koppling i ASP.NET Codebehind
Jag har nu kollat i böcker och surfat på nätet. Där man på ett enkelt sätt visar hur man skappar en databaskoppling i codebehind läge. Det finns jätte fina guider i .NET, men jag saknar en steg för steg instruktion. JAg vill lära mig detta och tycker det verkar enormt svårt att få konkret information om detta..
Är det någon som har några tips.... Jag använder VB i VS.NET 2003
/phinalaSv: Hur gör man en databas koppling i ASP.NET Codebehind
http://www.pellesoft.se/login/articles/article.asp?artid=364Sv: Hur gör man en databas koppling i ASP.NET Codebehind
Imports System.Data
Imports System.Data.SqlClient
.
.
.
.
' Create the connection to the database
Dim cn As New SqlConnection("Data Source=localhost;Initial Catalog=Northwind;Integrated Security=SSPI")
' Create the T-SQL Query you want to execute on the database
Dim cmdQuery As New SqlCommand("SELECT * FROM Products", cn)
' Create the adapter to copy the result from the query over to a datatable
Dim daNorthwindProducts As New SqlDataAdapter(cmdQuery)
' Create a datatable to hold the result
Dim dtProducts As New DataTable("Products")
' Execute the query and copy all resulting rows into the datatable
daNorthWindProducts.Fill(dtProducts)
</code>