资源简介
mysql-5.6.23,当前最新版,方便使用,linux平台源码编译安装,官方源码,安全可靠,支持MD5验证。
代码片段和文件信息
/* 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;
}
- 上一篇:毕业设计 SSH2 管理系统 附有论文
- 下一篇:全国2018行政区域省市县镇村5级
相关资源
- mysql-5.5.57-win32
- mysql-5.0.16-win32.zip
- MySQL官网测试数据上百万条数据sql文件
- mysql-5.5.19-win32.mis
- mysql安装文件 mysql-5.5.15-win32.msi
- 基于JFinal+Hadoop+mysql的云盘管理系统
- 将mysql数据库结构同步到SQLITE的利器
- MONyog-8.6.0-0_X32_X64_RPM
- MySQL教程 pdf版
- mysql-connector-odbc-5.2.6-linux-glibc2.5-x86-
- 北大青鸟房屋租赁系统-Mysql版-struts
- Mysql-Client
- SQL学习指南(第2版)
- 深入浅出mysql第二版-高清文字版-有标
- Extjs6.0 进销存 ssm
- 明源售楼系统源码附带mysql数据库
- spring+springmvc+mybatis搭建的一个佳期酒
- MySql数据库MySql数据库
- SSH2框架
- mysql 英文单词数据库文件.sql文档 20
- mysql-connector-odbc-5.3.6-win64_32.msi.rar
- Navicat8.2MySQL.zip
- ssh+mysql论坛
- Navicat for MySQL 11.0.19(64-bit)官方安装
- OA办公自动化系统(SSH+MySQL)
- Navicat for MySQL 10.1.7 enterprise
- spring+springmvc+mybatis搭建的一个酒店管
- 医药管理系统struts+hibernat+mySql,内含
- mysql+ssh整合源码
- 基于SSM框架的适合企业的hrm人事管理
评论
共有 条评论