Jump to content

[SOLVED] Equivalent of Oracle's "TYPE" in PHP.


ghe

Recommended Posts

For the benefit of those who does not know.

 

The oracle code that i had posted yesterday was a way of declaring an "Associative Array"

in oracle. for which, in PHP, its just the same as declaring a simple array.

 

Let us discuss.

 

ORACLE CODE: TYPE myTable IS TABLE OF varchar2(1) INDEX BY BINARY_INTEGER;

 

The oracle code specified above means that you are declaring an ARRAY of type "varchar2" with the size of 1 ,

and it is named "myTable".

 

The sub-code "INDEX BY BINARY_INTEGER" means that you are indexing the ARRAY by an "INTEGER".

Note that in Oracle, ARRAYS can be indexed either by an "INTEGER" or a "STRING".

 

And that's it, hope this would help someone here.

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.