Advertisement

03.18.2004 at 02:26PM PST, ID: 20924074
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

ADO error 3421 - Application uses a value of the wrong type

Asked by jlingg in Miscellaneous Programming

Tags: , , , ,

I am trying to pass some values to a sql server 2k stored proc and am getting this error:
3421 - Application uses a value of the wrong type for the current operation.

It does not make sense to me because all of the other variables seem to work fine except this varchar(64) variable here is the code.

stored proc:
CREATE PROCEDURE dbo.addnewpermit

  @p_PERMIT_ID                     numeric,
  @p_PROJECT_NUMBER      numeric,
  @p_PROJECT_NO_OCC       numeric,
  @p_PERMIT_TYPE_ID          numeric,
  @p_PERMIT_LETTER_DATE_SENT      datetime,
  @p_PERMIT_LETTER_SENT_TO         varchar(64),
  @p_PERMIT_LETTER_SIGNEE          numeric,
  @p_PERMIT_LETTER_AUTHOR          numeric,
  @p_PERMIT_RESPONSE_DATE          datetime,
  @p_PERMIT_GRANTED                varchar(3),
  @p_PERMIT_MONEY                  numeric,
  @p_PERMIT_COMMENTS               varchar(866),
  @p_PERMIT_EXPIRATION_DATE        datetime

as

vb code:

With inscom
            .ActiveConnection = cnSQL        
            .CommandType = adCmdStoredProc      
End With
            inscom(0) = pp_permit_id
            inscom(1) = pp_project_number
            inscom(2) = 1
            inscom(3) = pp_permit_type_id
            inscom(4) = pp_permit_letter_date_sent
            inscom(5) = pp_letter_sent_to
            inscom(6) = pp_letter_signee
            inscom(7) = pp_letter_author
            inscom(8) = pp_response_date
            inscom(9) = pp_granted
            inscom(10) = pp_money
            inscom(11) = pp_comments
            inscom(12) = pp_permit_expiration_date

            inscom.Execute

It runs to the point where it executes the "inscom(5)"= statement. The value here is some text like "joe smith".

Any ideas?


Start Free Trial
[+][-]03.18.2004 at 02:47PM PST, ID: 10628605

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.18.2004 at 03:04PM PST, ID: 10628751

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.18.2004 at 03:11PM PST, ID: 10628813

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.18.2004 at 04:13PM PST, ID: 10629260

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Miscellaneous Programming
Tags: uses, wrong, value, type, application
Sign Up Now!
Solution Provided By: DanRollins
Participating Experts: 2
Solution Grade: A
 
 
[+][-]03.18.2004 at 04:31PM PST, ID: 10629344

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.18.2004 at 10:35PM PST, ID: 10630817

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.19.2004 at 11:36AM PST, ID: 10636082

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.19.2004 at 11:38AM PST, ID: 10636099

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42