Skip to content
Snippets Groups Projects
Select Git revision
  • fc6d96bc6225c9bdd0e433589830436099efef6a
  • master default
  • prereq-parse
  • catalog-rewrite
4 results

DB_DataObject_createTables.bat

Blame
  • DB_DataObject_createTables.bat 551 B
    @ECHO OFF
    REM $Id: DB_DataObject_createTables.bat,v 1.1 2003-09-08 20:43:31 arnaud Exp $
    REM BATCH FILE TO EXECUTE PEAR::DB_DATAOBJECT createTables.php script
    
    IF '%1' == '' (
        ECHO **************************************************
        ECHO * Please pass the name of the ini file
        ECHO * to process at the only parameter
        ECHO *
        ECHO * e.g.: DB_DataObject_createTables my_ini_file.ini
        ECHO **************************************************
        GOTO :EOF
    )
    
    %PHP_PEAR_PHP_BIN% %PHP_PEAR_INSTALL_DIR%\DB\DataObject\createTables.php %1