GCC手动编译链接简单C程序

程序的编译

CC++是强类型语言,变量类型均应在代码执行前确定。
函数声明方面C和C++则不同, 对于函数在被调用之前未声明或定义:

阅读全文

使用Makefile生成LLVM Debug版本

生成Makefile

1
& ./configure

阅读全文

MySQL常用备忘点

判断null

1
2
3
4
5
-- 查询手机号不为null的用户数据
mysql> SELECT * from user where phone is not null;

-- 查询手机号为null的用户数据
mysql> SELECT * from user where phone is null;

阅读全文

MySQL连接操作

MySQL的JOIN(一):用法

上文的数据库栏目

阅读全文

Ubuntu下MySQL登录问题

首次登录mysql未设置密码或忘记密码解决方法

  1. 先输入命令:
1
2
3
4
5
6
7
8
9
10
11
12
13
$ sudo cat /etc/mysql/debian.cnf
[sudo] password for katherine:
# Automatically generated for Debian scripts. DO NOT TOUCH!
[client]
host = localhost
user = debian-sys-maint
password = ufBTBJJGhF7a2lyf
socket = /var/run/mysqld/mysqld.sock
[mysql_upgrade]
host = localhost
user = debian-sys-maint
password = ufBTBJJGhF7a2lyf
socket = /var/run/mysqld/mysqld.sock

阅读全文