01 2016 档案

摘要:ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mydb'。原因是因为mysql数据库的user表里,存在用户名为空的账户即匿名账户,导致登录的时候是虽然用的是root,但实际是匿名登录的,通过错误提示里的... 阅读全文
posted @ 2016-01-22 14:42 一样菜 阅读(340) 评论(0) 推荐(0) 编辑
摘要:client下的default_character_set=utf8;它是需要的,可是它的作用是干吗的?它的作用等同执行以下3个命令SET character_set_client =utf8SET character_set_results =utf8;SET character_set_conn... 阅读全文
posted @ 2016-01-22 14:40 一样菜 阅读(118) 评论(0) 推荐(0) 编辑
摘要:1. mysqld -install //装载MySQL2. net start mysql //启动MySQL3. create database student; //创建数据库4. show databases; //查看所有数据库5. use student; //使用当前数据库6... 阅读全文
posted @ 2016-01-22 12:04 一样菜 阅读(263) 评论(0) 推荐(0) 编辑
摘要:1. 将下载的 mysql-noinstall-5.1.69-win32.zip 解压至需要安装的位置, 如: C:\Program Files;2. 在安装文件夹下找到 my-small.ini 配置文件, 将其重命名为 my.ini , 打开进行编辑, 在 [client] 与 [mysqld]... 阅读全文
posted @ 2016-01-21 23:01 一样菜 阅读(313) 评论(0) 推荐(0) 编辑
摘要:菜单component->Install Packets按Add按钮,选择delphi目录里的bin目录下的dclsockets70.bpl(delphi2010是dclsockets140.bpl),然后TClientSocket和TServerSocket控件就会出现在Internet页上了 阅读全文
posted @ 2016-01-14 16:45 一样菜 阅读(509) 评论(0) 推荐(0) 编辑
摘要:加上头文件#include#include Image1->Picture->LoadFromFile("001.gif");((TGIFImage*) Image1->Picture->Graphic)->Animate = true;//开始播放((TGIFImage*) Image1->Pic... 阅读全文
posted @ 2016-01-14 15:35 一样菜 阅读(489) 评论(0) 推荐(0) 编辑
摘要:转载自:http://www.cnblogs.com/lancidie/archive/2011/08/05/2128318.htm C++内存管理[导语]内存管理是C++最令人切齿痛恨的问题,也是C++最有争议的问题,C++高手从中获得了更好的性能,更大的自由,C++菜鸟的收获则是一遍一遍的检查代... 阅读全文
posted @ 2016-01-14 14:06 一样菜 阅读(287) 评论(0) 推荐(0) 编辑
摘要:、、 阅读全文
posted @ 2016-01-13 18:43 一样菜 阅读(749) 评论(0) 推荐(0) 编辑
摘要:多线程编程是提高系统资源利用率的一种常见方式。它占用的资源更小,启动更快,还可以实现在后台运行一些需时较长的操作。[喝小酒的网摘]http://blog.hehehehehe.cn/a/8498.htm一、初识TThread对象VCL提供了用于多线程编程的TThread类,在这个类中封装了Windo... 阅读全文
posted @ 2016-01-11 14:19 一样菜 阅读(2403) 评论(0) 推荐(0) 编辑
摘要://opencv读取图片 cv::Mat image; //const char *fileName = "HeadImage-UI/Photo-001.bmp"; const char *fileName = "HeadImage-UI/53d253192be47412.... 阅读全文
posted @ 2016-01-07 15:28 一样菜 阅读(950) 评论(0) 推荐(0) 编辑
摘要:__fastcall TForm6::TForm6(TComponent* Owner) : TForm(Owner){#if 1 //for debug AllocConsole(); AttachConsole( GetCurrentProcessId() )... 阅读全文
posted @ 2016-01-07 11:59 一样菜 阅读(1129) 评论(0) 推荐(0) 编辑
摘要:使用双缓冲Form->DoubleBuffered = true;Panel->DoubleBuffered = true; 阅读全文
posted @ 2016-01-06 13:43 一样菜 阅读(424) 评论(0) 推荐(0) 编辑
摘要:在空的Form里加个Button,写入void __fastcall TForm1::Button1Click(TObject *Sender){ for (long k=0; kLeft = 10; label->Top = k*30; label->Parent... 阅读全文
posted @ 2016-01-06 12:53 一样菜 阅读(642) 评论(0) 推荐(0) 编辑
摘要:有两种方法,一是把该对象的Transparent 的属性设为true,图片的白色代表即为父界面的颜色而是在头文件加上#include Image1->Picture->LoadFromFile("BigFile001.png");即可 阅读全文
posted @ 2016-01-01 21:01 一样菜 阅读(1152) 评论(0) 推荐(0) 编辑