码迷,mamicode.com
首页 >  
搜索关键字:0 rows    ( 2525个结果
PHP连接数据库的方法
mysql可通过两种方式通过PHP和web相连,一种通过php的mysql相关函数,另一种通过php的ODBC相关函数。 相关函数如下: MYSQL函数 mysql_affected_rows: 得到 MySQL 最后操作影响的列数目。 mysql_close: 关闭 MySQL 伺服器连线...
分类:数据库   时间:2014-06-28 13:22:14    阅读次数:281
gridview里找到控件
for (int i = 0; i < gvIncomeYG.Rows.Count; i++){ Label lblYG_DYYGSR_BHS = ((Label)gvIncomeYG.Rows[i].Cells[18].FindControl("YG_DYYGSR_BHS"));}YG_D...
分类:其他好文   时间:2014-06-26 19:55:47    阅读次数:164
leetcode--ZigZag Conversion
The string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font fo...
分类:其他好文   时间:2014-06-26 14:42:23    阅读次数:164
jquery-table
获取table中选中一行的一个单元格的值varid=$(‘input:checked‘).val(); alert($(‘input:checked‘).parent().parent().index()); varrow=$(‘input:checked‘).parent().parent().index(); varstr=document.getElementById("table1").rows[row+1].cells[5].innerText; alert(str);..
分类:Web程序   时间:2014-06-25 06:21:50    阅读次数:281
ZigZag Conversion
题目 The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility) P A H ...
分类:其他好文   时间:2014-06-24 23:59:25    阅读次数:338
C API函数描述(A-F)
25.2.3.1. mysql_affected_rows() my_ulonglong mysql_affected_rows(MYSQL *mysql) 描述 返回上次UPDATE更改的行数,上次DELETE删除的行数,或上次INSERT语句插入的行数。对于UPDATE、DELETE或INSERT语句,可在mysql_query()后立刻调用。对于SELECT语句,mysql_aff...
分类:Windows程序   时间:2014-06-24 19:36:15    阅读次数:262
PLSQL_PLSQL Hint用法总结(概念)
2014-06-20 BaoXinjian一、摘要手工指定SQL语句的执行计划1. hints是oracle提供的一种机制,用来告诉优化器按照我们的告诉它的方式生成执行计划。我们可以用hints来实现:1) 使用的优化器的类型2) 基于代价的优化器的优化目标,是all_rows还是first_row...
分类:数据库   时间:2014-06-23 08:37:37    阅读次数:1050
使用sqoop从mysql往hive中增量导数据shell脚本
一:sqoop增量导入的两种方式Incremental import arguments:ArgumentDescription--check-column (col)Specifies the column to be examined when determining which rows to...
分类:数据库   时间:2014-06-23 00:58:09    阅读次数:345
HTML标签<frame>使用
框架的基本结构:<html><frameset><frame></frame></frameset></html>注:frame和body不能同时出现。frame标签没有结束符。frameset标签中可以用cols和rows来规定框架的比例,这里框架比例是可变化的,可以通过在frame标签中设置noresize属..
分类:Web程序   时间:2014-06-22 09:57:56    阅读次数:222
NYOJ 587 blockhouses 【DFS】
blockhouses 时间限制:1000 ms  |  内存限制:65535 KB 难度:3 描述Suppose that we have a square city with straight streets. A map of a city is a square board with n rows and n columns, each representing ...
分类:其他好文   时间:2014-06-21 22:36:56    阅读次数:316
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!