Ejemplo n.º 1
0
<?php

/* This script updates all existing FedEx shipments with set values for
 * label_printer_type and label_format_type
 */
require_once '../includes/prepend.inc.php';
QApplication::Authenticate();
$objDatabase = FedexShipment::GetDatabase();
$strQuery = "UPDATE fedex_shipment SET label_printer_type = 1, label_format_type = 5;";
$objDatabase->NonQuery($strQuery);
echo "Updated!";
Ejemplo n.º 2
0
    /**
     * Truncate fedex_shipment table
     * @return void
     */
    public static function Truncate()
    {
        // Get the Database Object for this Class
        $objDatabase = FedexShipment::GetDatabase();
        // Perform the Query
        $objDatabase->NonQuery('
				TRUNCATE `fedex_shipment`');
    }