Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

Connection & Datareader

Presentasi serupa


Presentasi berjudul: "Connection & Datareader"— Transcript presentasi:

1 Connection & Datareader

2 Proses Standar Penggunaan Koneksi Query DataReader Control
Pengenalan singkat Debug and Deploy Write Code Access Data Use Visual Studio .NET Create Interface Proses Standar Penggunaan Koneksi Query DataReader Control

3 Proses Standar Koneksi Query Data Reader Control

4 Penggunaan Koneksi Setting Koneksinya SqlConnection
Pasang ConnectionString * Data Source / Server * Initial Catalog / Database * Integrated Security * User ID * Password Contoh : Dim xkoneksi as new sqlconnection Xkoneksi.connectionString=“Data Source=localhost;Initial Catalog=Master;Integrated Security=true“ SqlConnection Database

5 Dim xcom as new sqlcommand Query = “select nim, nama from mhs“
Ambil Data SqlCommand Parameter * Query * SqlConnection Contoh : Dim query as string Dim xcom as new sqlcommand Query = “select nim, nama from mhs“ Xcom.commandtext(query,xkoneksi) SqlCommand SqlConnection Database

6 Penggunaan DataReader Tidak perlu di instance-kan
dim xread as sqldatareader 2. SqlCommand.ExecuteReader 3. Forward Only Use SqlDataReader SqlCommand SqlConnection Database Row1 Col1 Row1 Col2 Row1 Col3 Row1 Col4 Row2 Col1 Row2 Col2 Row2 Col3 Row2 Col4 Row3 Col1 Row3 Col2 Row3 Col3 Row3 Col4

7 Control Command DataReader (Forward Only Use Looping Pembacaan data : * xread([posisi_kolom]) atau xread([nama_kolom]) * xread.item([posisi_kolom]) atau xread.item([nama_kolom]) * xread.Get([tipe_data]) atau xread([posisi_kolom])

8 Test Case – Design UI

9 Deklarasikan variable yang dibutuhkan yaitu:
Langkah pertama Deklarasikan variable yang dibutuhkan yaitu: SQLConnection SQLCommand SQLDataReader Dim xkoneksi As New SqlClient.SqlConnection Dim xcom As New SqlClient.SqlCommand Dim xread As SqlClient.SqlDataReader

10 Buat variable untuk menyimpan query Pada event Command1 click:
Langkah kedua Buat variable untuk menyimpan query Dim strSQL as new String(“”) Pada event Command1 click: Isikan connectionString pada object koneksi. Isikan query pada variable sqlStr Isikan sqlStr pada property cmd.commandText Isikan property cmd.connection Buka connecntion Isikan xReader dengan cmd.executeReader

11 xcom. CommandText = “select
xcom.CommandText = “select * from Tugas where NamaMhs like & ‘” Textbox1.Text & “%’” xkoneksi.ConnectionString = “Data Source=localhost;Initial Catalog=PV;Integrated Security=true“ xcom.Connection = xkoneksi xkoneksi.Open() xread = xcom.ExecuteReader

12 Langkah ketiga – Isi Listbox
If xread.HasRows Then Do While xread.Read Listbox1.Items.Add(xread.item(0)) loop End if Xread.close() Xkoneksi.close()


Download ppt "Connection & Datareader"

Presentasi serupa


Iklan oleh Google