PHPMYADMIN配置[10]

[入库:2005年8月18日] [更新:2007年3月25日]

本文简介:选择自 yuguanglou 的 blog

$cfg['export']['asfile']                    = false;----是否导出为文件
$cfg['export']['onserver']                  = false;-----导出到服务器
$cfg['export']['onserver_overwrite']        = false;-----是否使用导出覆盖
$cfg['export']['remember_file_template']    = true;-----记住文件模板

$cfg['export']['csv_columns']               = false;
$cfg['export']['csv_null']                  = 'null';
$cfg['export']['csv_separator']             = ';';
$cfg['export']['csv_enclosed']              = '"';
$cfg['export']['csv_escaped']               = '\\';
$cfg['export']['csv_terminated']            = 'auto';
$cfg['export']['excel_columns']             = false;
$cfg['export']['excel_null']                = 'null';

$cfg['export']['latex_structure']           = true;
$cfg['export']['latex_data']                = true;
$cfg['export']['latex_columns']             = true;
$cfg['export']['latex_relation']            = true;
$cfg['export']['latex_comments']            = true;
$cfg['export']['latex_mime']                = true;
$cfg['export']['latex_null']                = '\textit{null}';
$cfg['export']['latex_caption']             = true;
$cfg['export']['latex_data_label']          = 'tab:__table__-data';
$cfg['export']['latex_structure_label']     = 'tab:__table__-structure';

$cfg['export']['sql_structure']             = true;
$cfg['export']['sql_data']                  = true;
$cfg['export']['sql_drop_database']         = false;
$cfg['export']['sql_drop_table']            = false;
$cfg['export']['sql_auto_increment']        = true;
$cfg['export']['sql_backquotes']            = true;
$cfg['export']['sql_relation']              = false;
$cfg['export']['sql_columns']               = false;
$cfg['export']['sql_extended']              = false;
$cfg['export']['sql_comments']              = false;
$cfg['export']['sql_mime']                  = false;

/**
* link to the official mysql documentation.
* be sure to include no trailing slash on the path.
* see [url]http://www.mysql.com/documentation/index.html[/url] for more information
* about mysql manuals and their types.
*/
$cfg['mysqlmanualbase'] = 'http://www.mysql.com/doc/en';-----mysql在线手册地址

/**
* type of mysql documentation:
*   old        - old style used in phpmyadmin 2.3.0 and sooner
*   searchable - "searchable, with user comments"
*   chapters   - "html, one page per chapter"
*   big        - "html, all on one page"
*   none       - do not show documentation links
*/
$cfg['mysqlmanualtype'] = 'searchable';

本文关键:PHPMYADMIN配置
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top