Help for this page

Select Code to Download


  1. or download this
    use Win32::ODBC;
    sub getChildren {
    ...
        }
        return $self->{ 'Children' };
    }
    
  2. or download this
    CREATE TABLE Forest (
            ForestId   INT NOT NULL,
            Parent     INT,
            Type       CHAR( 50 ) NOT NULL,
            PRIMARY KEY( ForestID, Type ));