polgensql.php
来自「开源MARC数据处理」· PHP 代码 · 共 34 行
PHP
34 行
<?
Class polGenSQL
{
function output()
{
$content = '';
$content .= "<b>polGenSQL.py</b> - MARC to SQL format conversion for export into<br>";
$content .= "your PhpMyLibrary software. Coded by Polerio Babao III for use in you MARC.<br>";
$content .= "Accessed it at your directory PhpMyLibrary/polerio/python/ directory.<br><br>";
$content .= "Execute this file into your computer to generate sql files.<br>";
$content .= "This file can be used to generate SQL compatible commands which can be exported to your<br>";
$content .= "phpmylibrary database.<br><br>This has been compiled as Windows executable polGenSQL.exe<br>And in addition, can be used also in Linux system with Python.<br>";
$content .= "<br>";
$content .= "To use simply execute it from your dos prompt like this<br>";
$content .= "<b>c:\htdocs\PhpMyLibrary\polerio\python\polGenSQL yourmarcfile.txt </b>";
$content .= "<br><br>";
$content .= "Old version was deprecated. This version simply creates phpmylibrary.sql<br>";
$content .= "file which can be exported to your PhpMyLibrary database. <br>";
$content .= "To use in Linux system. Simply type <b>python polGenSQL.py somemarc.txt </b><br>";
$content .= "to obtain phpmylibrary.sql which you can import from your phpmylibrary database.<br>";
$content .= "If you prefer to use python simply download the latest version from www.python.org .<br><br>";
$content .= "polGenSQL.py Polerio Babao III polerio@users.sourceforge.net<br><br>";
return $content;
}
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?