首页 >

Linux下自动向MySQL中录入数据的脚本

数据库|mysql教程Linux下自动向MySQL中录入数据的脚本
MySQL教程,Linux下自动向MySQL中录入数据的脚本
数据库-mysql教程
spring3 源码 下载,ubuntu绑定多ip,反爬虫单打视频,php和php哪个好,柠檬seo查询lzw
#!/bin/sh#define the strcture of tableTABLE=quot;(username char(50) not null,password char(20) not null,uid char(10) no
硬件数据显示软件源码,ubuntu解除锁屏,tomcat浏览器访问不了,差评爬虫,php支付接口对接教程交流,原阳网络seolzw
chm右键不能看源码,vscode红色波浪rn,戴尔电脑ubuntu,tomcat能用80端口,sqlite3查询命令行,爬虫pythonsleep,查看php 错误日志,盐池seo网络推广价格,网站漏洞以及找后台入口 等功能.,dedecms 模板判断lzw

#!/bin/sh
#define the strcture of table
TABLE=”(username char(50) not null,password char(20) not null,uid char(10) not null,gid char(10) not null,maildir char(100) not null,domain char(20) not null,active char(1) default ‘1’);”
#create database and table
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
for type in database table;do
printf “Please input the $type name you would like to create:[postfix]”
while read data;do
if [ ! -z ${data} ]; then
if [ “$type” = “database” ];then
database=$data
elif [ “$type” = “table” ];then
table=$data
fi
break
fi
printf “Please input the database name you would like to create:[postfix]”
done
done

#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#input the data per user
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
for ((i=1;;i++));do
printf “Do you want to input the data per user:[yes,no]”
while read yes_no;do
if [ “$yes_no” != “yes” ];then break 2;fi
echo “Please input the data of NO.$i user:”
for col in username password uid gid maildir domain active;do
printf “$col of NO.$i :” && read ${col}[${i}]
done
break
done
done
#output the data you input
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo “”
echo “++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++”
echo “Please make sure the data you input:”
echo “Database: $database”
echo “Table : $table”
echo “”
echo “Show the recodes you input:”
echo “username password uid gid maildir domain active”
for ((n=1;n<i;n++));do
echo “${username[$n]} ${password[$n]} ${uid[$n]} ${gid[$n]} ${maildir[$n]} ${domain[$n]} ${active[$n]}”
done
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#execute the sql to input data to mysql
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo “”
echo “Executing the SQL to input data to mysql……”
printf “Creating database $database…… ” && \
mysql -u root -h –password=RedHat -e “create database if not exists ${database}” && \
echo -e “\033[32mOK\033[m”
printf “Creating table $table…… ” && \
mysql -u root -h –password=redhat $database -e “create table if not exists ${table}$TABLE” && \
echo -e “\033[32mOK\033[m”
#insert recode to mysql
for ((n=1;n<i;n++));do
printf “Insert NO.$n recode…… ” && \
mysql -u root -h –password=redhat $database -e “insert into $table values (‘${username[$n]}’,encrypt(‘${password[$n]}’),’${uid[$n]}’,’${gid[$n]}’,’${maildir[$n]}’,’${domain[$n]}’,’${active[$n]}’)” && \
echo -e “\033[32mOK\033[m”
done
#show all the recode
echo “”
echo “Show all the recods in the mysql:”
mysql -u root -h –password=redhat $database -e “select * from $table”


Linux下自动向MySQL中录入数据的脚本
  • Linux下使用MySQL C API
  • Linux下使用MySQL C API | Linux下使用MySQL C API ...

    Linux下自动向MySQL中录入数据的脚本
  • MySQL Limit的用法总结
  • MySQL Limit的用法总结 | MySQL Limit的用法总结 ...

    Linux下自动向MySQL中录入数据的脚本
  • Ubuntu 8.04下MySQL更改目录造成错误问题(datadir)的解决
  • Ubuntu 8.04下MySQL更改目录造成错误问题(datadir)的解决 | Ubuntu 8.04下MySQL更改目录造成错误问题(datadir)的解决 ...