资源简介
mysql5.16.12的社区版本安装包,在dev.mysql.com上面没有找到旧的安装包,所以去找了以前服务器上面的安装包,上传到这里,方便大家下载使用。
代码片段和文件信息
/* Copyright (c) 2000 2007 MySQL AB
Use is subject to license terms
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not write to the Free Software
Foundation Inc. 51 Franklin Street Fifth Floor Boston MA 02110-1301 USA */
/*
echo is a replacement for the “echo“ command builtin to cmd.exe
on Windows to get a Unix eqvivalent behaviour when running commands
like:
$> echo “hello“ | mysql
The windows “echo“ would have sent “hello“ to mysql while
Unix echo will send hello without the enclosing hyphens
This is a very advanced high tech program so take care when
you change it and remember to valgrind it before production
use.
*/
#include
int main(int argc char **argv)
{
int i;
for (i= 1; i < argc; i++)
{
fprintf(stdout “%s“ argv[i]);
if (i < argc - 1)
fprintf(stdout “ “);
}
fprintf(stdout “\n“);
return 0;
}
相关资源
- MySQL安装版64位绿色版
- dbforge studio for mysql 64位 专业破解版
- navicat for mysql 11.1 .13 x86版及x64完美破
- Navicat Premium 11绿色免安装注册版
- MySQL5.6.10_64位
- dbForge_Studio_for_MySQL_Professional_7.x
- mysql百万级测试数据 300W条
- mariadb-10.3.12-winx64.msi
- mysql5.0的win64版本
- MYSQL实战45讲全.zip
- MySQL5.5.48安装软件Linux版本
- 高性能MySQL(第三版)High Performance
- JDK8 + Tomcat8.0 + SpringMVC4 + Spring4 + Hibe
- Navicat+for+MySQL+11.0.10+破解补丁
- mySQL汉化版本
- mysql数据库家教系统
- 数据库课设 劳务信息管理系统
- SSM框架开发超市管理系统
- idea+maven+hibernate+springmvc+mysql 实现的增
- springmvc+mysql部门管理系统源码完整版
- Intellij idea+mysql+mybatis+springMVC增删改查
- mysql
- mysql5.7.24 windowsX64
- ssm+mysql的网上商城系统(附数据库脚
- MySQL5.7.20完整版本及安装教程
- navicatformysql(内置注册码永久使用)
- mysql-connector-net-6.10.9 、mysql-for-visual
- Navicat for MySQL及JDBC各厂驱动
- navicat for mysql 11.0.17_x64 破解
- navicat+for+mysql简体中文破解版.绝对可
评论
共有 条评论