Při použití ODP.NET jako dataprovider můžete použít kolekci čísel Oracle jako parametr (bind variable). Toto funguje se serverem Oracle 9, 10 nebo 11 a vydáním ODP.net>=11.1.0.6.20.
Podobné řešení je možné, když používáte Devart's .NET dataprovider pro Oracle.
Vyberme smlouvy s číslem kontraktu 3 a 4.
K přenosu řady čísel smluv do našeho dotazu musíme použít typ Oracle.
MDSYS.SDO_ELEM_INFO_ARRAY
se používá, protože pokud použijeme tento již předdefinovaný typ Oracle, nemusíme definovat vlastní typ Oracle. Můžete vyplnit MDSYS.SDO_ELEM_INFO_ARRAY
s max. 1048576 čísly.
using Oracle.DataAccess.Client;
using Oracle.DataAccess.Types;
[OracleCustomTypeMappingAttribute("MDSYS.SDO_ELEM_INFO_ARRAY")]
public class NumberArrayFactory : IOracleArrayTypeFactory
{
public Array CreateArray(int numElems)
{
return new Decimal[numElems];
}
public Array CreateStatusArray(int numElems)
{
return null;
}
}
private void Test()
{
OracleConnectionStringBuilder b = new OracleConnectionStringBuilder();
b.UserID = "sna";
b.Password = "sna";
b.DataSource = "ora11";
using (OracleConnection conn = new OracleConnection(b.ToString()))
{
conn.Open();
using (OracleCommand comm = conn.CreateCommand())
{
comm.CommandText =
@" select /*+ cardinality(tab 10) */ c.* " +
@" from contract c, table(:1) tab " +
@" where c.contractnum = tab.column_value";
OracleParameter p = new OracleParameter();
p.OracleDbType = OracleDbType.Array;
p.Direction = ParameterDirection.Input;
p.UdtTypeName = "MDSYS.SDO_ELEM_INFO_ARRAY";
//select contract 3 and 4
p.Value = new Decimal[] { 3, 4 };
comm.Parameters.Add(p);
int numContracts = 0;
using (OracleDataReader reader = comm.ExecuteReader())
{
while (reader.Read())
{
numContracts++;
}
}
conn.Close();
}
}
}
Index na contract.contractnum se nepoužívá, když se vynechá nápověda /*+ mohutnost (tab 10) */. Předpokládal jsem, že contractnum je primární klíč, takže tento sloupec bude indexován.
Viz také zde:http://forums.oracle.com/forums/thread.jspa?messageID=3869879#3869879