OCI kullanarak PHP bir 'AZALAN paketi' Dönüş

3 Cevap php

Merhaba ben OCI8 kullanarak doğrudan PHP bir Oracle paketi hakkında bilgi almak için çalışıyorum:

$sql = 'DESC my_package';
$stmt = oci_parse($conn, $sql);
oci_execute($stmt);

Bu döndürür:

Warning: oci_execute() [function.oci-execute]: ORA-00900: invalid SQL statement in /oci8_test.php on line 16

Ben SQLPlus bunu denedim ben komut çalıştığını biliyorum.

Herkes bunu başarmak için nasıl biliyor mu.

Thx

3 Cevap

Cevaplar için teşekkürler, benim cevap bulduk düşünüyorum.

So for anyone who is interested, as Vincent said, I think to make it work you'll have to create your own 'DESC'. The Oracle View to use is 'user_arguments', you get the function/procedure names, argument names and types, argument position, etc...

Select * from user_arguments where package_name = 'my_package'

DESC SQL Plus, komut.

I have been away from Oracle for a few years now, but look into the data dictionary. For example for tables you could do below. There must be something for Packages as well. DESC MY_TABLE

eşdeğerdir

SELECT 
column_name "Name", 
nullable "Null?",
concat(concat(concat(data_type,'('),data_length),')') "Type"
FROM user_tab_columns
WHERE table_name='TABLE_NAME_TO_DESCRIBE';

DESC bir SQL*Plus komutu, bunun dışında çalışmak SQL*Plus. Olmaz Sen DESC herhangi bir aracı veri dictionnary sorgulayarak kendi yazabilirsiniz:

SQL> SELECT column_name, data_type, data_length,
  2         data_precision, data_scale, nullable
  3    FROM all_tab_columns
  4   WHERE table_name = 'T';


COLUMN_NAME  DATA_TYPE  DATA_LENGTH DATA_PRECISION DATA_SCALE NULLABLE
------------ ---------- ----------- -------------- ---------- --------
COLUMN1      CHAR                 6                           Y
COLUMN2      CHAR                 6                           Y