_storeId = NULL; $this->_bookId = NULL; $this->_quantity = NULL; $this->_store_Name = NULL; $this->_book_Title = NULL; } // ResultSet constructor function setFromRow($row){ $this->_storeId = $row[0]; $this->_bookId = $row[1]; $this->_quantity = $row[2]; $this->_store_Name = $row[3]; $this->_book_Title = $row[4]; } // member variable getters and setters function getStoreId() { return $this->_storeId; } function setStoreId($storeId){ $this->_storeId = $storeId; } function getBookId() { return $this->_bookId; } function setBookId($bookId){ $this->_bookId = $bookId; } function getQuantity() { return $this->_quantity; } function setQuantity($quantity){ $this->_quantity = $quantity; } function getStore_Name() { return $this->_store_Name; } function setStore_Name($store_Name){ $this->_store_Name = $store_Name; } function getBook_Title() { return $this->_book_Title; } function setBook_Title($book_Title){ $this->_book_Title = $book_Title; } } // // ================================================================== // // WARNING : Do not edit this file by hand. This file was created // by SoProMach. Edit the definition files and re-generate to make // modifications. Making modifications to this file directly will // result in loss of work when the file is re-generated. // // ================================================================== ?>