sqlConn fioco come SqlClient.SqlConnection
sqlCmd fioco come SqlClient.SqlCommand
strConnection fioco come stringa
'Ottenere la stringa del collegamento da App.Config (deve importare system.configuration ed aggiungere la configurazione di sistema di riferimento
strConnection = ConfigurationManager.ConnectionStrings (“hoh_schoolwear_v1. _0.My.MySettings.pitl_hoh_schoolwear„) .ConnectionString
sqlConn = nuovo SqlConnection (strConnection)
sqlCmd = nuovo SqlCommand (“selezionare * A PARTIRE dai tbl_users DOVE username = '„ & txtUsername.Text & “'„, sqlConn)
sqlConn.Open ()
Oscurare il Dott. come SqlClient.SqlDataReader
Dott. = sqlCmd .ExecuteReader
Mentre Dott. Colto ()
txtEmail.Text = Dott. (“email„)
txtUsername.Text = Dott. (“username„)
…
Concluder mentre
Fermo
Prova di conclusione
Dott. Chiuder ()
sqlCon.Close ()
|