上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 67 下一页
摘要: 连接到一个 MySQL 数据库 在您能够访问并处理数据库中的数据之前,您必须创建到达数据库的连接。 在 PHP 中,这个任务通过 mysql_connect() 函数完成。 语法 mysql_connect(servername,username,password); 注释:虽然还存在其他的参数,但 阅读全文
posted @ 2016-02-21 17:56 UniqueColor 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 1 什么是变量? 2 3 在程序的执行过程中值可以发生变化的量,称之为变量 4 5 如:$username="xiaosan"; //定义一个变量$username,并赋值为"xiaosan" 6 $username="强哥"; //变量$username的值替换为"强哥" 7 echo $user 阅读全文
posted @ 2016-02-19 02:55 UniqueColor 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 转:http://www.cnblogs.com/mindwind/p/5196310.html 飞行的架构师和奔跑的程序员 关于程序员和架构师的讨论很多,我想从不同的角度说下。 寻路 当我刚进入软件行业成为一名程序员时,我的理想就是成为一名架构师。架构师这个词的英文叫 Architect,原意是建 阅读全文
posted @ 2016-02-19 01:15 UniqueColor 阅读(221) 评论(0) 推荐(0) 编辑
摘要: Problem Description Baby Ming is fond of weight lifting. He has a barbell pole(the weight of which can be ignored) and two different kinds of barbell 阅读全文
posted @ 2016-02-18 18:51 UniqueColor 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/luxiaoxun/p/3870265.html 一、多线程的优缺点 多线程的优点: 1)资源利用率更好 2)程序设计在某些情况下更简单 3)程序响应更快 多线程的代价: 1)设计更复杂 虽然有一些多线程应用程序比单线程的应用程序要简单,但其他的一 阅读全文
posted @ 2016-02-15 19:27 UniqueColor 阅读(395) 评论(0) 推荐(0) 编辑
摘要: Problem Description Clarke is a patient with multiple personality disorder. One day he turned into a learner of geometric. He did a research on a inte 阅读全文
posted @ 2016-02-13 22:08 UniqueColor 阅读(296) 评论(0) 推荐(0) 编辑
摘要: Problem Description Clarke is a patient with multiple personality disorder. One day he turned into a learner of graph theory. He learned some algorith 阅读全文
posted @ 2016-02-13 21:56 UniqueColor 阅读(516) 评论(0) 推荐(0) 编辑
摘要: Problem Description Clarke is a patient with multiple personality disorder. One day, Clarke turned into a junior student and took a chemistry exam. Bu 阅读全文
posted @ 2016-02-13 21:48 UniqueColor 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://www.jb51.net/article/31876.htm 1.前提是MyEclipse已经能正常开发Java工程 2.安装MySQL 个人使用的是版本是 mysql-5.0.22-win32.zip 网址:http://www.mysql.com/downloads/mys 阅读全文
posted @ 2016-02-09 22:35 UniqueColor 阅读(1135) 评论(0) 推荐(0) 编辑
摘要: 应该是正在使用的项目是从网上下的或者别人那里直接拷贝导致的,解决办法: 下一个mysql-connector-java-5.1.22-bin.jar或者是最新版,最好放项目目录里 右键点项目,Build path - Configure build Path 移除带红叉的jar,添加下载的jar 成 阅读全文
posted @ 2016-02-09 03:21 UniqueColor 阅读(438) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 67 下一页