Why do I get 800A0E7C errors?
|
| View previous topic :: View next topic |
| Author |
Message |
Elvis Guest
|
| Why do I get 800A0E7C errors? |
| |
|
|
|
|
ASP hunter Guest
|
| Code: |
ADODB.Connection error '800a0e7c'
Parameter object is improperly defined. Inconsistent or incomplete information was provided.
' or
ADODB.Connection error '800a0e7c'
The application has improperly defined a Parameter object. |
You are probably neglecting to specify a size for a command object parameter, e.g.:
| Code: |
| cmd.createparameter("@varchar50", AdVarChar, adParamInput) |
Should be:
| Code: |
| cmd.createparameter("@varchar50", AdVarChar, adParamInput, 50) |
|
| |
|
|
|
|