摘要:
一、基本查询语句 create table emp( id int not null unique auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'male', #大部分是男 阅读全文
摘要:
一、什么是进程 程序:一行行代码组成 进程:正在运行的程序 进程即正在执行的一个过程。进程是对正在运行程序的一个抽象 狭义定义:进程是正在运行的程序的实例(an instance of a computer program that is being executed)。 广义定义:进程是一个具有一 阅读全文
摘要:
1、什么是异常? 程序运行过程中出现了不可预知的错误,并且该错误没有对应的处理机制,那么就会以异常的形式表现出来, 造成的影响就是整个程序无法再正常运行 2、异常的结构: 1.异常的类型:NameError 2.异常的信息:name 'fdsdfsdf' is not defined 3.异常的位置 阅读全文