C# - Pass Collections Of Data To PL/SQL Package Procedure Or Function From .NET?

Aug 27, 2009

I have a table that I need to insert a set of records into based on user input. IE: Selection from a list of items to choose from. For this example, let's just say it's a collection of int's.

Not a lot of good examples on the internet. There's only one related question here on SO, but it lends no answers either (both answers are dead ends).

How do you setup the call into the Package from .NET? How do you setup the Package Procedure or Function to receive the collection? How do you process the collection once inside of the Procedure or Function?

View 3 Replies


ADVERTISEMENT

Pass A Value From A Sub Procedure To A Function Procedure .... Pass The Whole Subprocedure To The Function Procedure Argument?

Mar 30, 2012

Im a student doing an assignment, how do i pass the value from a sub procedure to a function procedure....i want to pass the value from decSubtotal to a function procedure named CalculateDiscount; check out my code--

[Code]...

View 1 Replies

Collections - Pass Data To ActiveX.exe?

May 17, 2010

I've created a MAPI Wrapper in VB6 and compiled it as an ActiveX.exe so I can use it in my VB.NET project. The project is a windows service that takes data from a webservice passes data to activex.exe and it creates public folder records in exchange 2003. I was wondering if anyone know how I could pass a collection to my activex.exe?

View 1 Replies

Pass The Data To Procedure Instead Of Writing Out Each One?

Jan 7, 2011

I have 10 panels on a form and I was wondering if there is a more efficient way to loop through them to pass the data to my procedure instead of writing out each one the way I am doing

' sample shows only 3 but there are 10
For i As Integer = 1 To 3
Select Case i
Case 1

[Code]....

View 14 Replies

Web Service To Deserilize JSON Http Request - Pass To Stored Procedure To Retrieve Data From SQL Server

Aug 23, 2011

I have a task to create a web service to receive client-side app's http request(with rpc={json data} in the end), deserilize it and put he parameter in stored Procedure in order to retrive data from sql server. the procedure query and client-side's app are already there and the return data to client-side app is JSON too

View 1 Replies

Procedure Or Function 'Get Customer Data' Expects Parameter

Jun 10, 2011

This is the error when i try to execute my code "Procedure or function 'Get Customer data' expects parameter '@Name', which was not supplied."

objCommand.CommandType = CommandType.StoredProcedure
objCommand.CommandText = "GetCustomerData"
Dim ObjParam1 As New SqlParameter("@Name", SqlDbType.VarChar, 2000)

[Code].....

In debugging, i c the value in ObjParam1.value that I'm passing.

View 2 Replies

Dynamically Pass The Source Filename To A Dts Package?

Apr 14, 2011

Using VB 2008 and SQL 2000. Converting code from VB6. I need to dynamically pass the source filename to a dts package. The assignment statement doesn't seem to work. What am I doing wrong or what do I need to do differently?

Private Function RunDTS(ByVal strPkg As String, ByVal strServer As String, ByVal strFile As String, ByVal strBatch As String, ByVal strEmployee As String) As Integer
Dim v As DTS.GlobalVariable2
Dim pkg As New DTS.Package

[code]....

View 4 Replies

How To Pass A Function To A Function Is Functors/function Objects Avaiable In VB2010

Oct 12, 2011

I want to make an numerical integration method with takes in an analytic function and integrate it over a specific interval. For the numerical integration procedure I want to use some procedures in nr.com. The problem is that these are programmed in C++ and they uses functors to pass a function to the integration method. How can I do this in VB 2010?

I want to initialize the function (i.e. set a=1,b=0 for function y(x)=a*x+b) and then pass the function to the integration method. Then when the integration method call the function it only calls the function with one parameter (i.e. x since a,b is already set)

What is the best way to do this in VB2010?I want to make a general integration method where I can pass any single valued function and integration limits.

I have just started using VB, and from what I have found so far it seems like the tools you have is

- to us a delegate for the function
- to use a lambda expression for the function
- send a pointer/adressOf
- to create a function class/structure and submit this to the function

As for now I am most inclined to create a function-class. But I am not really sure how.F.ex. I make different classes for each "uniqe function" I want to integrate, but how can I pass them to the integration function when I need to specify the argument type in the integration-function-call?This seems like a basic problem which applies to many Math operations, so I think it would be very useful to clarify this.

View 2 Replies

Procedure Or Function 'procedure Name' Display Has Too Many Arguments Specified

Mar 11, 2010

i able to get data then i click second time i got error Procedure or function "procedure name" display has too many arguments specified" why this error. [code]

View 2 Replies

VS 2005 Modifying Sub Procedure To Function Procedure?

Apr 15, 2010

I finished coding an application for converting Celsius to Fahrenheit, and vice versa. I used the Sub Procedure to convert them. What I need now is to modify it. I would have to use the Function Procedure instead of my Sub Procedure.

[Code]...

View 11 Replies

Package Manager - Function For Each Checkboxed Item

Jan 1, 2009

I decided to try Visual Basic 2008. I have most of the gui down but I one thing:

I want to have a function for each checkboxed item, the type of box I am using is CheckedListBox.

View 6 Replies

Error:'Feedback' Must Implement 'Function GetRuleViolations() As System.Collections.Generic.List

Mar 20, 2009

I need another (dozen) pair of eyes on this. The following code:

Interface iRuleEntity
Function GetRuleViolations() As List(Of RuleViolation)
End Interface
Partial Public Class Feedback

[code]....

is giving me this error:'Feedback' must implement 'Function GetRuleViolations() As System.Collections.Generic.List(Of RuleViolation)' for interface 'iRuleEntity'.

View 2 Replies

Use Window Like A Function / Pass In Parameters / Use Window / Get Data Out When It Closes?

Dec 13, 2011

I am creating a window that is a generic keypad for editing numerical values on a touchscreen. I would like to press an 'edit' button to create a copy of the keypad window/bring up a reusable version of the same window (I don't care), but pass in parameters: the old value I'm manipulating, and a title to be displayed above the number pad. I would like the user to be able to type in the new value, then press the 'done' key to submit this value and have it sent back to the main application window into my custom control that contains a text box.(I have the number pad's layout sorted out already; I'm already using a variation on it to set a global password 'access level'. It's getting the information in and out that has me scratching my head.) [code]

View 1 Replies

How To Pass Parameters To Stored Procedure

Jun 26, 2011

This code calls a store procedure that takes input parameters. With this code I'm confused as to how the parameters are passed to the stored procedure. The parameters are first stored into 2 string variables (strCategoryName & strOrderYear). They are then copied/moved to an sql parameter prm.value. But the stored is stored in an sqlcommand (cmd ). I can't understand how the stored procedures knows what the parameter values are.

Private Sub btnWithParameters2_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles btnWithParameters2.Click
Dim cnn As SqlClient.SqlConnection = _
New SqlClient.SqlConnection("Data Source=SKYROCKET;" & _
"Initial Catalog=Northwind;Integrated Security=SSPI")
[Code] ......

View 12 Replies

Pass A Variable To A Threaded Procedure?

Mar 4, 2010

How do I pass a variable to a threaded procedure? The clickedItem.Tag contains a username as a string which I want to pass to Public Sub GetLockoutInfo(ByVal UserID As String) but the AddressOf GetLockoutInfo line doesn't allow for a parameter to be passed to the procedure.

Private Sub CallGetLockoutStatus(ByVal sender As Object, ByVal e As System.EventArgs)
Dim SearchUserDetails As New NiRDs_Functions_OC

[Code].....

View 2 Replies

Pass MethodName As Parameter Of A Procedure?

Jan 2, 2012

I want to create a Procedure that its parameter is also a procedure. I created some procedures to be used as parameters below:

Private Sub Jump(xStr as string)
Msgbox xStr & " is jumping."
End Sub

[code]....

this procedure should call the procedure above:

Private Sub ExecuteProcedure(?, StringParameter) '- i do not know what to put in there
? ' - name of the procedure with parameter
End Sub

usage:

ExecuteProcedure(Jump, "StringName")
ExecuteProcedure(Run, "StringName")

View 1 Replies

Pass NULL To A Store Procedure?

Mar 7, 2011

I see this asked many times on hereI'm copying this question that I found on here.Is there any way to pass a null value (I mean a value that the sql will interpret as null) to a stored procedure when using:tableAdapter.Fill(dataSet.table_name, param1 (as string),param2 (as string) etc...Which is the most painless way to do this(assuming that the sp stays inside the database!!)

View 4 Replies

Pass Parameter To Stored Procedure Through .net?

Jun 22, 2010

this is my coding when i run this coding for display the content in textboxes from the database by click event in datagrid. "Procedure or Function 'sp_developer_display' expects parameter '@developerid', which was not supplied."this error will display my sp in sql express is ALTER PROCEDURE dbo.sp_developer_display(

[Code]...

View 2 Replies

Pass Parameters To A Stored Procedure In SQL?

Jul 2, 2011

Im trying to pass parameters to a stored procedure in SQL but for some reason its storing the parameter(s) in the columns....

My code

Public Function AddRec(ByVal textbox1 As String, ByVal textbox2 As String, ByVal textbox3 As String, ByRef Creation As Date)
'Adding a new Record to SQL
Dim Conn As New SqlConnection

[code]....

the addwithvalue all the textbox`s have a value in which i would expect but for some reason when i go to db in SQL it actually shows the @Username,@Account,@Password,@DatCreated not the values im passing in please see the attached image.

View 2 Replies

Pass Function (Of TElement / TKey) As A Function Parameter

May 28, 2012

I want to make a GetAllContacts method which takes a sort parameter of type Func(Of Contact, TKey) which is the same type that the OrderBy method for an IEnumerable(Of Contact) takes.[code]"Too many arguments to extension method 'Public Function ElementAtOrDefault(index As Integer) As Contact' defined in 'System.Linq.Enumerable'." on the second parameter.

View 2 Replies

IDE :: Pass Parameters To Stored Procedure Through ObjectDataSource?

Jun 7, 2007

I am building a three tierd app, and therefore have all my data access methods in a class by itself.This class only calls stored procedures, basically, I need to pass in the following:

1) stored procedure name as string

2) parameters as IDataParameter() -- an array of parameters

3) other fields ( not important to this discussion)

If I use a GridView on my web form and choose an ObjectDataSourceObjectDataSource, and then choose my business object and method, since the method is a call to a stored procedure with a parameter array, I don't know how to pass it values in the IDataParameter format.The Method Signature listed on the wizard is "RunSP(String spname, IDataParameter[] params), returns SqlDataReader" which basically is calling a method called RunSP with two parameters, of which the second parameter is a parameter array for a stored proc.

View 3 Replies

Pass A Null Value For Date To Sql Stored Procedure?

Mar 16, 2009

My application is asp.net with vb. In my page I have a textbox for passing date. If I didn't enter date and on clicking submit, I have to pass null value to the stored procedure. I tried following codes such as DBNull.Value and DateTime.MinValue. In that case instead of null ,"#12:00:00#" is passing. I have to pass Null.

View 3 Replies

Pass Parameters To SQL Stored Procedure From Application?

Apr 6, 2009

I have created a database with on table that is very similar in setup to ProductCostHistory from the Adventureworks database. Using the adventureworks database as an example, when the procedure is given the parameters of date and productID it will change the EndDate of the currently active cost to the date value and insert a new record with productID as the ProductID and Date as the StartDate, leaving EndDate null for the newly inserted record. I am looking for a way to create a simple form with two textboxes and a button. textbox1 accepts the ProductID parameter and textbox2 accepts the Date value. when the button is pressed, the stored procedure is executed and the table is updated. This seems pretty simple and I am very familiar with tieing stored procedures to a table in a dataset when each prcedure handles only a single simple action (either, SELECT, INSERT, UPDATE, or DELETE but not a single procedure that combines UPDATE and INSERT as the procedure described above does). I've done some reading and played with this on myown but can not find the simplest straightforward way of accomplishing this seemingly simple task.

View 2 Replies

Pass SQL Stored Procedure Results To Javascript?

Jul 19, 2011

I have an asp.net page that contains a javascript function. I am using a vb.net code behind to run a stored procedure against the database to pull back address information. Results can be 1 or more rows. I need to pass the results to the javascript for processing. My code is as follows:

VB.NET

Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

[Code].....

View 2 Replies

Pass Stored Procedure Name Dynamically To Linq-to-SQL?

Jul 11, 2011

How can I pass stored procedure name dynamically to Linq-to-SQL, vb.net and get the result into a datatable.

View 2 Replies

Pass Values From A Stored Procedure To Datagridview?

Jan 20, 2011

I have a form that I'm running a stored procedure in and I'd like to pass the results to a datagridview and then offer the user the ability to export those results to a flat text file.

View 1 Replies

How To Convert XML File To String And Pass To Stored Procedure

Mar 15, 2010

Trying to convert XML file to string and pass to stored procedure.
Dim fs As FileStream = File.Open(fileUpload1.PostedFile.FileName, FileMode.Open, FileAccess.Read)
Dim buffer(fs.Length) As Byte
fs.Read(buffer, 0, fs.Length - 1)
txtRawXML.Text = System.Text.ASCIIEncoding.ASCII.GetString(buffer)

When I tried to upload file I got error. The error description is 'A name contained an invalid character.'. Could not find prepared statement with handle 0. Could not find prepared statement with handle 0. sp_xml_removedocument: The value supplied for parameter number 1 is invalid. The statement has been terminated.

View 3 Replies

Pass Datatable As A Parameter To A SQL Server Stored Procedure

Jul 29, 2011

how to Pass datatable as a parameter to a SQL Server stored procedure

View 3 Replies

Pass Field In Stored Procedure In List View?

Jun 10, 2011

I want to passing field in database to list view with stored procedure.[code]...

View 3 Replies

Pass Values From A Form To Sql Server Stored Procedure?

Jan 12, 2011

I have an application that I'm building which pulls dates from a database. The start value is stored as payPeriodStart date and I add 7 days to get the end date. What I need to know is, is it possible to store those values and pass them to a Stored Procedure? Currently my stored procedures have "static" dates in them ie[code]...

View 14 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved