当前位置: 首页>>代码示例>>PHP>>正文


PHP PMA_Table::getLastError方法代码示例

本文整理汇总了PHP中PMA_Table::getLastError方法的典型用法代码示例。如果您正苦于以下问题:PHP PMA_Table::getLastError方法的具体用法?PHP PMA_Table::getLastError怎么用?PHP PMA_Table::getLastError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PMA_Table的用法示例。


在下文中一共展示了PMA_Table::getLastError方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

$reread_info = false;
$errors = array();
$table_alters = array();
/**
 * Updates table comment, type and options if required
 */
if (isset($_REQUEST['submitoptions'])) {
    $message = '';
    if (isset($_REQUEST['new_name'])) {
        if ($pma_table->rename($_REQUEST['new_name'])) {
            $message .= $pma_table->getLastMessage();
            $GLOBALS['table'] = $pma_table->getName();
            $reread_info = true;
            $reload = true;
        } else {
            $errors[] = $pma_table->getLastError();
            $message .= $pma_table->getLastError();
        }
    }
    if (isset($_REQUEST['comment']) && urldecode($_REQUEST['prev_comment']) !== $_REQUEST['comment']) {
        $table_alters[] = 'COMMENT = \'' . PMA_sqlAddslashes($_REQUEST['comment']) . '\'';
    }
    if (!empty($_REQUEST['new_tbl_type']) && strtolower($_REQUEST['new_tbl_type']) !== strtolower($tbl_type)) {
        $table_alters[] = PMA_ENGINE_KEYWORD . ' = ' . $_REQUEST['new_tbl_type'];
        $tbl_type = $_REQUEST['new_tbl_type'];
    }
    if (!empty($_REQUEST['tbl_collation']) && $_REQUEST['tbl_collation'] !== $tbl_collation) {
        $table_alters[] = 'DEFAULT ' . PMA_generateCharsetQueryPart($_REQUEST['tbl_collation']);
    }
    $l_tbl_type = strtolower($tbl_type);
    if (($l_tbl_type === 'myisam' || $l_tbl_type === 'isam') && isset($_REQUEST['new_pack_keys']) && $_REQUEST['new_pack_keys'] != (string) $pack_keys) {
开发者ID:Kishaaa,项目名称:cs160-website,代码行数:31,代码来源:tbl_operations.php

示例2: array

/**
 * Updates if required
 */
if (isset($_REQUEST['submitoptions'])) {
    $_message = '';
    $warning_messages = array();

    if (isset($_REQUEST['new_name'])) {
        if ($pma_table->rename($_REQUEST['new_name'], null, $is_view = true)) {
            $_message .= $pma_table->getLastMessage();
            $result = true;
            $GLOBALS['table'] = $pma_table->getName();
            $reread_info = true;
            $reload = true;
        } else {
            $_message .= $pma_table->getLastError();
            $result = false;
        }
    }
}

if (isset($result)) {
    // set to success by default, because result set could be empty
    // (for example, a table rename)
    $_type = 'success';
    if (empty($_message)) {
        $_message = $result ? __('Your SQL query has been executed successfully') : __('Error');
        // $result should exist, regardless of $_message
        $_type = $result ? 'success' : 'error';
    }
    if (! empty($warning_messages)) {
开发者ID:nicokaiser,项目名称:phpmyadmin,代码行数:31,代码来源:view_operations.php

示例3: testGetLastErrorAndMessage

 /**
  * Test getLastError & getLastMessage
  *
  * @return void
  */
 public function testGetLastErrorAndMessage()
 {
     $table = new PMA_Table('table1', 'pma_test');
     $table->errors[] = "error1";
     $table->errors[] = "error2";
     $table->errors[] = "error3";
     $table->messages[] = "messages1";
     $table->messages[] = "messages2";
     $table->messages[] = "messages3";
     $this->assertEquals("error3", $table->getLastError());
     $this->assertEquals("messages3", $table->getLastMessage());
 }
开发者ID:nervo,项目名称:phpmyadmin,代码行数:17,代码来源:PMA_Table_test.php


注:本文中的PMA_Table::getLastError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。