摘要: Goto是各种规范中都保留的关键字,却都不提倡使用的.有时可以用Do...While...来代替Gotodo{ if (someCondition) { break; }}while(0);Label1:DoOtherThing这个相当于if (someCondition){ goto:Label1;} 阅读全文
posted @ 2007-06-16 17:26 好好学习,天天进步 阅读(467) 评论(0) 推荐(0) 编辑
摘要: MySql装好以后,进入命令行,开始建表需要先创建一个database.开始使用:create database mybase;use mybase;create table user_info(user_id char(10),user_name char(25),password char(10)); mysql中如何找到系统表?show tables from your_db;use mys... 阅读全文
posted @ 2007-06-16 17:14 好好学习,天天进步 阅读(1653) 评论(0) 推荐(0) 编辑