Code Search for Developers
 
 
  

create.sh from SME Web Application Framework at Krugle


Show create.sh syntax highlighted

#!/bin/bash
### create the DB tables of the application

### go to this directory
cd $(dirname $0)

### get the variables
. config.sh

### create the database 
echo "create database $dbname;" \
  | mysql --host=$dbhost --user=$dbuser --password=$dbpasswd

### restore the database table and initial data
mysql --host=$dbhost --user=$dbuser --password=$dbpasswd \
      --database=$dbname < DT.sql




See more files for this project here

SME Web Application Framework

smewebapp intends to simplify the construction of web applications for informatization of the work of SME-s (small and medium enterprises), institutions, organizations etc.

Project homepage: http://sourceforge.net/projects/smewebapp
Programming language(s): JavaScript,PHP,Shell Script,XML
License: other

  DT.sql
  config.sh
  create.sh
  dump.sh