Advertisement

07.22.2008 at 10:07AM PDT, ID: 23585781
[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!

7.6

Passing date parameter to oracle stored Procedure worked on vb6 stopped working after upgrade to vb.net 2005

Asked by PSERS in .NET, Microsoft Visual Basic.Net, Oracle 9.x

the following code worked on vb6.   I believe the problem is in the conversion of the date.  I have a stored procedure written in oracle that accepts a date.  It is defined as a date.  In vb6 i used the following code to call the procedure and it worked fine.  
con.ConnectionString = "Provider=MSDAORA;Data Source=PPRD;User Id=imaging;Password=imaging;"
con.Open

con.CursorLocation = adUseNone

With cmd
 .ActiveConnection = con
 .CommandText = "DBO.P_PROCESS_DOC_IMAGE_REQUEST"
 .CommandType = adCmdStoredProc

Set param = .CreateParameter("Piv_ExternalImageId", adVarChar, adParamInput, 18)      'object id
.Parameters.Append param
Set param = .CreateParameter("Piv_ExternalImageName", adVarChar, adParamInput, 25) 'object name
.Parameters.Append param
Set param = .CreateParameter("Piv_PrimaryIdentifierType", adChar, adParamInput, 1)
.Parameters.Append param
Set param = .CreateParameter("Piv_PrimaryIdentifier", adVarChar, adParamInput, 9)
.Parameters.Append param
Set param = .CreateParameter("Piv_DocTypeCode", adVarChar, adParamInput, 4)       'doc type
.Parameters.Append param
Set param = .CreateParameter("Piv_WorkflowInstanceId", adVarChar, adParamInput, 10)
.Parameters.Append param
Set param = .CreateParameter("Pid_ScanDate", adDate, adParamInput, 200)           'scan date
.Parameters.Append param
Set param = .CreateParameter("Pio_rtn_code", adVarChar, adParamOutput, 20)
.Parameters.Append param
Set param = .CreateParameter("Pio_rtn_text", adVarChar, adParamOutput, 200)
.Parameters.Append param
End With

the Pid_ScanDate param was filled as follows :
 yyyy = Mid(lCALformfield.Value, 1, 4)
            mm = Mid(lCALformfield.Value, 5, 2)
            dd = Mid(lCALformfield.Value, 7, 2)
       cmd("Pid_ScanDate") = CDate(mm & "/" & dd & "/" & yyyy)

this code works find.
Then i converted to vb.net.   Code to follow

 con.ConnectionString = "Provider= OraOLEDB.Oracle;Data Source=PINT;User Id=imaging;Password=imaging;"
                    con.Open()

                    con.CursorLocation = ADODB.CursorLocationEnum.adUseNone


                    With cmd
                        .let_ActiveConnection(con)
                        .CommandText = "DBO.P_PROCESS_DOC_IMAGE_REQUEST"
                        .CommandType = ADODB.CommandTypeEnum.adCmdStoredProc

                        param = .CreateParameter("Piv_ExternalImageId", ADODB.DataTypeEnum.adVarChar, ADODB.ParameterDirectionEnum.adParamInput, 18) 'object id
                        .Parameters.Append(param)
                        param = .CreateParameter("Piv_ExternalImageName", ADODB.DataTypeEnum.adVarChar, ADODB.ParameterDirectionEnum.adParamInput, 25) 'object name
                        .Parameters.Append(param)
                        param = .CreateParameter("Piv_PrimaryIdentifierType", ADODB.DataTypeEnum.adChar, ADODB.ParameterDirectionEnum.adParamInput, 1)
                        .Parameters.Append(param)
                        param = .CreateParameter("Piv_PrimaryIdentifier", ADODB.DataTypeEnum.adVarChar, ADODB.ParameterDirectionEnum.adParamInput, 9)
                        .Parameters.Append(param)
                        param = .CreateParameter("Piv_DocTypeCode", ADODB.DataTypeEnum.adVarChar, ADODB.ParameterDirectionEnum.adParamInput, 4) 'doc type
                        .Parameters.Append(param)
                        param = .CreateParameter("Piv_WorkflowInstanceId", ADODB.DataTypeEnum.adVarChar, ADODB.ParameterDirectionEnum.adParamInput, 10)
                        .Parameters.Append(param)
                        param = .CreateParameter("Pid_ScanDate", ADODB.DataTypeEnum.adDate, ADODB.ParameterDirectionEnum.adParamInput, 10) 'scan date
                        .Parameters.Append(param)
                        param = .CreateParameter("Pio_rtn_code", ADODB.DataTypeEnum.adVarChar, ADODB.ParameterDirectionEnum.adParamOutput, 20)
                        .Parameters.Append(param)
                        param = .CreateParameter("Pio_rtn_text", ADODB.DataTypeEnum.adVarChar, ADODB.ParameterDirectionEnum.adParamOutput, 200)
                        .Parameters.Append(param)
                    End With
scandate param is filled like this.  
cmd.Parameters("Pid_ScanDate").Value = CDate(mm & "/" & dd & "/" & yyyy)

i get the following error
PLS-00306: wrong number or types of arguments in call to 'P_PROCESS_DOC_IMAGE_REQUEST'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored

Pid_scandate is the 7th param in the stored procedute.

Can anyone help..... I can not change the stored procedure.    

thanks  rb
Start Free Trial
[+][-]07.22.2008 at 11:47AM PDT, ID: 22062348

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.

 
[+][-]07.22.2008 at 12:09PM PDT, ID: 22062580

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.

 
[+][-]07.22.2008 at 12:34PM PDT, ID: 22062806

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.

 
[+][-]07.22.2008 at 12:36PM PDT, ID: 22062834

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.

 
[+][-]07.22.2008 at 04:26PM PDT, ID: 22064620

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.

 
[+][-]07.23.2008 at 05:03AM PDT, ID: 22068175

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.

 
[+][-]07.23.2008 at 05:25AM PDT, ID: 22068362

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.

 
[+][-]07.29.2008 at 11:11AM PDT, ID: 22113984

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

Zones: .NET, Microsoft Visual Basic.Net, Oracle 9.x
Sign Up Now!
Solution Provided By: PSERS
Participating Experts: 2
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628