Set rsPlanID = Server.CreateObject("ADODB.Recordset")
rsPlanID.CursorLocation = adUseClient
strSQL = "SELECT PlanID FROM ATTJournals WHERE ATTUserDataID = " & ATTUserDataID
rsPlanID.Open strSQL, m_objConn, adOpenStatic, adLockOptimistic
If Not rsPlanID.EOF Then
response.Write "New PlanID:" & rsPlanID("PlanID")
End If
上記のコードは古典的なaspです。ADODB.Recordsetエラー '800a0bb9':引数のタイプが間違っています
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
Dows誰もが原因にこのエラーを知っているとどのようにそれを修正する:
私は次のエラーを取得していますか?
これをglobal.asaに入れることはできますか(つまり、数百の.aspファイルではなく1か所)。 – NealWalters
@NealWaltersはい、実際には強くお勧めします。 – Lankymart