asp + oracle Webプロジェクトに取り組んでおり、複数ユーザーの選択機能が必要です。
1、javascriptを使用して文字列配列を構築します:
var userArray = ["Simon","Sheng","Cheng"];
2、adoパラメータオブジェクトで渡しますが、パラメータオブジェクトを入力する方法がわかりません:
var cmd = Server.CreateObject("ADODB.Command");
var param = cmd.CreateParameter("par",????????????)<--I don't know how to fill;
3、Oracleでストアドプロシージャを作成します
create or replace package demo_pkg
as
type charArray is table of varchar2(255) index by binary_integer;
type t_cursor is ref cursor;
procedure p_test(p_id in charArray,p_cursor out t_cursor );
end;
create or replace package body demo_pkg
as
procedure p_test (p_id in charArray,p_cursor out t_cursor )
AS
v_cursor t_cursor;
BEGIN
open v_cursor for
select last_name from employees where last_name in (select * from table(cast(p_id as charArray)))
p_cursor := s_test;
end;
end;
3日間のグーグルの後、私はまだここにいます、それで誰が私を助けることができますか?