首页 > 其他
创建VIEW
1:创建view时如果两个表中有重名,那么可以给他们设置别名,如c.`name` advertiser_name.SELECT c.`name` advertiser_name, c.`phone` advertiser_phone, c.`mail` advertiser_mail, c.`add...
分类:其他   时间:2015-06-28 12:24:33    收藏:0  评论:0  赞:0  阅读:100
使用DataSet数据集插入记录
使用INSERT语句能够完成数据插入,使用DataSet对象也可以完成数据插入。为了将数据库的数据填充到DataSet中,则必须先使用DataAdapter对象的方法实现填充,当数据填充完成后,开发人员可以将记录添加到DataSet对象中,然后使用Update方法将记录插入数据库中。使用DataSe...
分类:其他   时间:2015-06-28 12:24:13    收藏:0  评论:0  赞:0  阅读:130
cdoj31-饭卡(card) (01背包)
http://acm.uestc.edu.cn/#/problem/show/31饭卡(card)Time Limit: 3000/1000MS (Java/Others) Memory Limit: 65535/65535KB (Java/Others)SubmitStatus电子科大本部食堂的....
分类:其他   时间:2015-06-28 12:22:13    收藏:0  评论:0  赞:0  阅读:211
Simplify Path
Given an absolute path for a file (Unix-style), simplify it.For example,path="/home/", =>"/home"path="/a/./b/../../c/", =>"/c"click to show corner cas...
分类:其他   时间:2015-06-28 12:22:03    收藏:0  评论:0  赞:0  阅读:153
如何用多个字符串来切分字符串
string str="我是小松鼠hsgg()jsjg776sdf";string [] sArray=Regex.Split(str,"[hs][()]",RegexOptions.IgnoreCase);int i =1;foreach (string s in sArray){ Conso.....
分类:其他   时间:2015-06-28 12:21:43    收藏:0  评论:0  赞:0  阅读:228
Dungeon Game -- latched
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The dungeon consists of M x N rooms laid out in a 2D grid. Our valiant knight (K) was initially p...
分类:其他   时间:2015-06-28 11:19:23    收藏:0  评论:0  赞:0  阅读:232
[NIO]dawn之Task详解
在上篇文章中,我们设置好了开发环境,接下来,我们将在了解了Task以及Buffer之后,再开始了解网络编程。我们首先来看看Task package zhmt.dawn; import kilim.Pausable; import kilim.Scheduler; import kilim.Task; //继承kilim.Task public class HelloWorld ext...
分类:其他   时间:2015-06-28 11:19:03    收藏:0  评论:0  赞:0  阅读:150
DataSource绑定DataTable.Select()显示system.data.DataRow问题解决办法
有时候我们需要在控件中绑定DataTable中设定条件过滤后的数据,此时,在winForm环境中,一些控件不能正确绑定并显示数据内容,这是因为DataTable.Select()返回的是DataRow[]类型的行数组,没有行列相关架构值。而控件如ListBox、comboBox等不能识别行数组中的列,读不到行列架构值,所以无法正常显示。     解决办法是用DataView进行转换,即在Data...
分类:其他   时间:2015-06-28 11:18:53    收藏:0  评论:0  赞:0  阅读:317
3.1.2 字符串格式化
类string.Formatter类Formatter有下面的公共访问方法:format(format_string, *args, **kwargs)format()是最基本的API方法。它把参数args和kwargs按格式字符串format_string进行格式化。这个函数只是调用vformat()方法来实现。 vformat(format_string, args, kwargs)这个方法进...
分类:其他   时间:2015-06-28 11:18:33    收藏:0  评论:0  赞:0  阅读:227
ACdream 1115 Salmon And Cat (找规律&&打表)
ACdream 1115 Salmon And Cat (找规律&&打表)...
分类:其他   时间:2015-06-28 11:18:04    收藏:0  评论:0  赞:0  阅读:232
InsertSort
#include #include using namespace std; int a[10000]={-1,4,5,2,1,3,7}; int n=5; void Is(){ for(int i=2;i<=n;i++){ if(a[i]<a[i-1]){ a[0]=a[i]; a[i]=a[i-1]; ...
分类:其他   时间:2015-06-28 11:17:53    收藏:0  评论:0  赞:0  阅读:147
DataTable读写到XML文件的正确方法(以及对缺少根元素问题的处理)
有时候需要将DataTable数据保存到xml文件中,在不使用数据库的小程序中、在需要通过网络接口传参数时,经常会有这种需要,操作不好,会出现“缺少根元素”。现在将经过反复测试没有错误的读写两个方法写出来,大家可以修改使用。     写datatable到XML        public static bool dataTable2EncXml(DataTable dt, str...
分类:其他   时间:2015-06-28 11:17:13    收藏:0  评论:0  赞:0  阅读:132
如果分配给命令的连接位于本地挂起事务中,ExecuteReader 要求命令拥有事务。命令的 Transaction 属性尚未初始化
{System.InvalidOperationException: 如果分配给命令的连接位于本地挂起事务中,ExecuteReader 要求命令拥有事务。命令的 Transaction 属性尚未初始化。 在 System.Data.OleDb.OleDbConnectionInternal.ValidateTransaction(OleDbTransaction transaction,...
分类:其他   时间:2015-06-28 11:17:03    收藏:0  评论:0  赞:0  阅读:245
欧拉函数代码实现
欧拉函数ph(n)的意思是所有小于n且与n互质的个数。 比如说ph(10) = 4{1,,3,7,9与12互质} 欧拉公式 :    a^ph(m) = 1(mod m); 代码实现: //筛选法打欧拉函数表 #include #include #include #include #include using na...
分类:其他   时间:2015-06-28 11:16:53    收藏:0  评论:0  赞:0  阅读:252
如果分配给命令的连接位于本地挂起事务中,ExecuteNonQuery 要求命令拥有事务。命令的 Transaction 属性尚未初始化
在 System.Data.OleDb.OleDbConnectionInternal.ValidateTransaction(OleDbTransaction transaction, String method) 在 System.Data.OleDb.OleDbConnection.ValidateTransaction(OleDbTransaction transaction, St...
分类:其他   时间:2015-06-28 11:16:44    收藏:0  评论:0  赞:0  阅读:445
记一次TcpListenOverflows报警解决过程
应用处理网络请求的能力,由两个因素决定: 1、应用的OPS容量(本例中是 就是我们的jetty应用:controller和thrift的处理能力) 2、Socket等待队列的长度(这个是os级别的,cat /proc/sys/net/core/somaxconn 可以查看,默认是128,可以调优成了4192,有的公司会搞成32768)...
分类:其他   时间:2015-06-28 11:15:54    收藏:0  评论:0  赞:0  阅读:275
2014-2015-2试题
2014-2015-2(面向对象设计)开卷考试试题。...
分类:其他   时间:2015-06-28 11:15:33    收藏:0  评论:0  赞:0  阅读:88
centos下yum安装lamp
CentOS下yum安装LAMP   1. 用yum安装Apache,Mysql,PHP. 1.1安装Apache yum install httpd httpd-devel 安装完成后,用/etc/init.d/httpd start 启动apache 设为开机启动:chkconfig httpd on 1.2 安装mysql 1.2.1 yum install ...
分类:其他   时间:2015-06-28 11:15:24    收藏:0  评论:0  赞:0  阅读:120
Assembly 调用的目标发生了异常
Assembly 调用的目标发生了异常快捷键...
分类:其他   时间:2015-06-28 11:14:33    收藏:0  评论:0  赞:0  阅读:151
[swustoj 785] Divide Tree
Divide Tree(0785)问题描述As we all know that we can consider a tree as a graph. Now give you a tree with nodes having its weight. We define the weight of ...
分类:其他   时间:2015-06-28 11:13:43    收藏:0  评论:0  赞:0  阅读:149
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!