上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 56 下一页

2018年5月10日

SQL 游标

摘要: 什么是游标(Cursor)? 关系数据库中的操作会对整个行集起作用。 例如,由 SELECT 语句返回的行集包括满足该语句的 WHERE 子句中条件的所有行。 这种由语句返回的完整行集称为结果集。 应用程序,特别是交互式联机应用程序,并不总能将整个结果集作为一个单元来有效地处理。 这些应用程序需要一 阅读全文

posted @ 2018-05-10 15:52 我来乔23 阅读(171) 评论(0) 推荐(0) 编辑

2018年5月7日

C++ map修改指定key的value

摘要: 对于修改C++指定key的value,网上查了很多,都说直接insert就会覆盖原来的值,是否是这样的呢? C++ Code 1234567891011121314151617181920212223242526272829303132333435363738 // mapmodifykey.cpp 阅读全文

posted @ 2018-05-07 16:33 我来乔23 阅读(8285) 评论(0) 推荐(2) 编辑

SQL操作【整理中...】

摘要: /////////////////////////////////////////////////////////////////////////////////////////////////数据库操作笔记////////////////////////////////////////////// 阅读全文

posted @ 2018-05-07 13:24 我来乔23 阅读(209) 评论(0) 推荐(0) 编辑

2018年4月28日

VC++ LoadLibrary失败,错误127(找不到指定的程序)

摘要: 该原因一般是由于DLL或其依赖的DLL使用了高版本的API,而运行时找不到dll中的函数导致的错误。 使用依赖工具查看可能是这样的情况:第一个依赖dll文件小方块中有红色 正常情况下,应该是这样: 解决办法:VS编译该dll时,请确保依赖的动态链接库的*.h,*.lib以及*.dll保持一致。 阅读全文

posted @ 2018-04-28 13:45 我来乔23 阅读(2777) 评论(0) 推荐(0) 编辑

2018年4月12日

VS编译错误:fatal error C1859:unexpected precompiled header error, simply rerunning the compiler might fix this problem

摘要: fatal error C1859:unexpected precompiled header error, simply rerunning the compiler might fix this problem 彻底的解决方法:下载安装VS90SP1-KB976656-x86.exe即可解决! 阅读全文

posted @ 2018-04-12 15:38 我来乔23 阅读(1377) 评论(0) 推荐(0) 编辑

InstallSheild 获取系统环境变量,如Desktop路径等

摘要: 使用FOLDER_DESKTOP变量获取的桌面路径可能为:C:\Users\Public\Desktop 而不是C:\Users\用户\Desktop Copy and paste the following define statements at the beginning of your se 阅读全文

posted @ 2018-04-12 13:12 我来乔23 阅读(857) 评论(0) 推荐(0) 编辑

2018年4月11日

Visual Studio Code调试node.js:无法在PATH上找到运行时的node

摘要: 首先,环境变量Path中加入nodejs的路径: 验证nodejs是否已经加入环境变量: 接着,重新启动Visual Studio Code, 试一下,是不是好了~ 附录:Visual Studio Code 调试 nodeJS launch.json 阅读全文

posted @ 2018-04-11 11:49 我来乔23 阅读(16442) 评论(0) 推荐(1) 编辑

2018年4月10日

InstallShield Build Error -1014: Cannot rename directory <PATH> to <PATH>\folder.Bak.

摘要: InstallSheild执行Build结果错误: 错误详细信息: Cannot rename directory <PATH> to <PATH>\folder.Bak. Windows Explorer or a DOS prompt may be pointing to a subfolder 阅读全文

posted @ 2018-04-10 13:30 我来乔23 阅读(512) 评论(0) 推荐(0) 编辑

2018年4月4日

HTML 标签 参考手册

摘要: 按功能类别排列 基础 格式 表单 框架 图像 音频/视频 链接 列表 表格 样式/节 元信息 编程 from: http://www.w3school.com.cn/tags/html_ref_byfunc.asp 阅读全文

posted @ 2018-04-04 09:23 我来乔23 阅读(268) 评论(0) 推荐(0) 编辑

2018年3月29日

MFC 单选按钮Radio使用注意

摘要: 使用MFC Radio时遇到问题:数据交换时出现断言崩溃框 定位于: 解决方法: 1、按CTRL+D,保证同一组内的radio的tab序号是连续的; 2、同一组内,设置 radio1的属性: group、tabstop、auto均为true; 设置radio2的属性: group设为false,ta 阅读全文

posted @ 2018-03-29 11:57 我来乔23 阅读(2183) 评论(0) 推荐(0) 编辑

上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 56 下一页

导航