入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
05
2015-01
MySql Resultset获取行数 2015-01-05
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); ResultSet rs = stmt.executeQuery(sql); rs.last(); int length = rs.getRow();如上,length
06
2014-02
mysql查询语句limit限制行数 2014-02-06
mysql查询语句,通过limit来限制查询的行数。 例如: select name from usertb where age > 20 limit 0, 1; //限制从第一条开始,显示1条 select name from usertb where age
12
2017-11
php获取数据库表中总记录行数并打印 2017-11-12
阅读更多
13
2014-11
C# API GetSystemMetrics(int nIndex)用法及值说明 2014-11-13
using System.Runtime.InteropServices;    [DllImport("user32")]  public static extern int GetSystemMetrics(int nIndex); nIndex值: SM_CXSCREEN = 0 "屏幕宽度 SM_CYSCREEN = 1 "屏幕高度
04
2016-09
BCGControlBar: 无法解析的外部符号 _xGetSystemMetrics@4 2016-09-04
//error LNK2001: 无法解析的外部符号 _xGetSystemMetrics@4 在stdafx中增加定义: #define COMPILE_MULTIMON_STUBS 在stdafx.cpp中包含头文件: #include
13
2011-09
GetSystemMetrics 2011-09-13
例子:该例子获取各参数的值,没有菜单、工具栏、状态栏 int i; i = GetSystemMetrics(SM_CLEANBOOT);//启动方式 0 i = GetSystemMetrics(SM_CMONITORS);//显示器数目 1 i
23
2017-12
GetSystemMetrics()用法 2017-12-23
转载:https://www.cnblogs.com/suanec/p/3895239.html 可以用GetSystemMetrics函数可以获取系统分辨率,但这只是其功能之一,GetSystemMetrics函数只有一个参数,称
05
2014-05
MFC获取屏幕大小及像素信息 2014-05-05
        COLORREF    clr;     HDC    dc = GetDC(0);     maxW    = ::GetSystemMetrics( SM_CXSCREEN );     maxH    = ::GetSystemMetrics( SM_CYSCREEN );     f
04
2017-01
ThinkPHP 模版中的内置标签 2017-01-04
内置标签就是模版引擎提供的一组可以完成控制、循环和判断功能的类似HTML语法的标签。 1、if标签进行条件判断 //if语句的完整格式 小新 一护
27
2014-03
ThinkPHP 3.2自定义函数 2014-03-27
从各种地方搜到的都是在common文件夹下,创建common.php,将函数写在common.php中。我去,照做,找不到函数。只能深深的无语了。 最后终于找到解决方