Server IP : 103.118.17.23 / Your IP : 216.73.216.188 Web Server : Microsoft-IIS/10.0 System : Windows NT RESELLERPLESK22 10.0 build 20348 (Windows Server 2016) AMD64 User : IWAM_plesk(default) ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/Inetpub/vhosts/mesa.org.in/httpdocs/assets/_core/php/examples/code_generator/ |
Upload File : |
<?php require_once('../qcubed.inc.php'); ?> <?php require('../includes/header.inc.php'); ?> <div id="instructions"> <h1>Load Methods that Utilize Database Indexes</h1> <p>As you saw in the previous example, the Code Generator will always generate two load methods, <strong>Load</strong> and <strong>LoadAll</strong>, for every code generated class. <strong>Load</strong> takes in the primary key (or primary keys if you have multiple PKs defined on the table) as the parameter, while <strong>LoadAll</strong> simply returns all the rows in the table.</p> <p>Using database indexes, the code generator will also generate additional Load-type methods given the way you have defined those indexes. In our <strong>Examples Site Database</strong>, there are quite a few indexes defined, but we will highlight two:</p> <ul> <li>person.last_name</li> <li>login.username (UNIQUE)</li> </ul> <p>Given these two indexes, the code generator has generated <strong>LoadArrayByLastName</strong> in the <strong>Person</strong> object, and it has defined <strong>LoadByUsername</strong> in the <strong>Login</strong> object.</p> <p>Note that the <strong>LastName</strong> load method returns an array while the <strong>Username</strong> load method returns just a single object. The code generator has recognized the UNIQUE property on the column, and it generated code accordingly.</p> <p>You could also define indexes on multiple columns and the code generator will generate load methods based on those multi-column keys.</p> </div> <div id="demoZone"> <h3>Using LoadByUsername to get a Single Login Object</h3> <?php // Let's load a login object -- let's select the username 'jdoe' $objLogin = Login::LoadByUsername('jdoe'); ?> <p>Login ID: <?php _p($objLogin->Id); ?><br/> Login Username: <?php _p($objLogin->Username); ?><br/> Login Password: <?php _p($objLogin->Password); ?></p> <h3>Using LoadArrayByLastName to get an Array of Person Objects</h3> <ul> <?php // We'll load all the persons who has a last name of "Smith" into an array $objPersonArray = Person::LoadArrayByLastName('Smith'); // Use foreach to iterate through that array and output the first and last // name of each person foreach ($objPersonArray as $objPerson) { printf('<li>' . $objPerson->FirstName . ' ' . $objPerson->LastName . '</li>'); } ?> </ul> <h3>Using CountByLastName to get a Count of All "Smiths" in the Database</h3> <p>There are <?php _p(Person::CountByLastName('Smith')); ?> person(s) who have a last name of "Smith" in the system.</p> </div> <?php require('../includes/footer.inc.php'); ?>