|
|
|
VB.NET Database Oracle ส่งค่า Parameters.AddWithValue Add ค่ามาใส่ไม่ได้ครับ |
|
|
|
|
|
|
|
ทำไมไม่ใช้ OracleClient ครับ รู้สึกว่า Oracle จะใช้ : แทนน่ะครับ
Code (VB.NET)
'*** Insert to Database ***'
Dim objConn As New OracleConnection
Dim strConnString, strSQL As String
strConnString = "Data Source=TCDB;User Id=myuser;Password=mypassword;"
strSQL = "INSERT INTO files (Name,FilesName,FilesType) " & _
" VALUES " & _
" (:sName,:sFilesName,:sFilesType)"
objConn.ConnectionString = strConnString
objConn.Open()
Dim objCmd As New OracleCommand(strSQL, objConn)
objCmd.Parameters.Add(":sName", OracleType.VarChar).Value = Me.txtName.Text
objCmd.Parameters.Add(":sFilesName", OracleType.Blob).Value = imbByte
objCmd.Parameters.Add(":sFilesType", OracleType.VarChar).Value = strMIME
objCmd.ExecuteNonQuery()
objConn.Close()
objConn = Nothing
Go to : ASP.NET Oracle BLOB Binary Data and Parameterized Query
|
|
|
|
|
Date :
2012-08-27 16:07:14 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ เดี๋ยวคืนนี้ลองแก้ดูครับ
|
|
|
|
|
Date :
2012-08-27 17:24:39 |
By :
yiam21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|