|
|
|
หนูต้องการดึงค่าจาก Database (Oracle) มาใส่ใน Chekbox ต้องทำอย่างไรค่ะ |
|
|
|
|
|
|
|
การ Insert บน Oracle ครับ
Code (VB.NET)
Dim objConn As New OracleConnection
Dim objCmd As New OracleCommand
Dim strConnString,strSQL As String
strConnString = "Data Source=TCDB;User Id=myuser;Password=mypassword;"
strSQL = "INSERT INTO customer (CustomerID,Name,Email,CountryCode,Budget,Used) " & _
" VALUES " & _
" ('" & Me.txtCustomerID.Text & "','" & Me.txtName.Text & "','" & Me.txtEmail.Text & "', " & _
" '" & Me.txtCountryCode.Text & "','" & Me.txtBudget.Text & "','" & Me.txtUsed.Text & "')"
objConn.ConnectionString = strConnString
objConn.Open()
With objCmd
.Connection = objConn
.CommandText = strSQL
.CommandType = CommandType.Text
End With
objCmd.ExecuteNonQuery()
objConn.Close()
objConn = Nothing
|
|
|
|
|
Date :
2013-02-11 20:54:09 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วมันcheckboxแบบนี้มันจะลงฐานข้อมูลในรูปแบบไหนอะครับถ้าสมมติคนเลือกทั้ง ABC
|
|
|
|
|
Date :
2013-02-15 17:27:34 |
By :
bankkungtou |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ Insert ตาม Checkbox ทั้งหมดเลยครับ ตัวไหนไม่ได้เลือกก็กำหนดค่าเป็น No หรือ False หรือ 0/1
|
|
|
|
|
Date :
2013-02-16 06:31:19 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|