Ahhh... ok!
Well, I had approached it a little different, I had used the methods of the ArrayObject Class.
I had:
$dbt = new ArrayObject();
$dbt->append('ORACLE');
$dbt->append('MySQL');
$dbt->append('SQL Server');
But, you are correct as well.
ArrayObject::__construct($array)
Construct a new array iterator from anything that has a hash table. That is any Array or Object.
Parameters: $array - the array to use.
Thank you!