通过plsql来添加新的记录时候,出现如下错误:These query results are not updateable.Include the ROWID to get updateable results. 如截图:
解决办法如下:
第一种解决方案:select* from T_status_set for update
第二种解决方案:select tss.* ,rowid ...
分类:
其他好文 时间:
2015-01-30 10:50:40
阅读次数:
751
JDK1.6官方下载_JDK6官方下载地址:http://www.java.net/download/jdk6/6u10/promoted/b32/binaries/jdk-6u10-rc2-bin-b32-windows-i586-p-12_sep_2008.exeJDK6 API CHM中文參考...
分类:
其他好文 时间:
2015-01-28 19:41:07
阅读次数:
795
1、Controller中添加负载测试时,最后运行完提示the following graph s were not created。导致最后没有数据报表生成。 解决方法:在result中将auto load analysis 和 auto collate results去掉即可。2、VuGen中....
分类:
其他好文 时间:
2015-01-26 18:52:49
阅读次数:
268
openfire默认配置连接mysql数据库后,中文出现乱码。
解决办法:
mysql字符集设置为utf8
+ 设置全局的字符集
SET @@global.character_set_client = utf8;
SET @@global.character_set_results = utf8;
SET @@global.character_se...
分类:
数据库 时间:
2015-01-24 11:45:27
阅读次数:
185
golang中,struct的method的形式如下:
func (r ReceiverType) funcName(parameters) (results)
如果想要修改struct的成员的值,method被定义时候其ReceiverType必须是struct*形式。如果ReceiverType是struct,则无法改变struct成员的值。
废话少说,代码验证:...
分类:
其他好文 时间:
2015-01-23 16:27:31
阅读次数:
223
Map map = new HashMap();
List list = new ArrayList();
list.add("a");
list.add("b");
map.put("mylist",list);
List results = (List)map.get("mylist");用这种方法实现一对多关系。...
分类:
编程语言 时间:
2015-01-22 18:10:25
阅读次数:
295
jquery.chosen.js查询时,chosen默认从第一个字符搜索,所以写中间的字符搜索时,是搜索不出来的若想实现中间字符的模糊查询,下面的js中(search_contains属性为true即可)可以让chosen搜索选项的中间及末尾字符no_results_text是搜索不到内容时,显示的...
分类:
Web程序 时间:
2015-01-20 17:19:37
阅读次数:
187
Not in 会转化成一系列的 and
case 1
SELECT @results = count(filterCriterion_sv)
FROM tbl_IN_VS_AND
WHERE filterCriterion_sv NOT IN (214, 215, 216, 217)
case 2
SELECT @results = count(filterCriterion_sv)...
分类:
其他好文 时间:
2015-01-16 16:49:29
阅读次数:
139
代码片段: sql_url = "select * from webpage where url = '%s'" % b try: cursor.execute(sql_url) results = cursor.fetchall() ...
分类:
数据库 时间:
2015-01-08 21:32:52
阅读次数:
245
The results are then passed to a reporter function that displays the results of the code analysis in the command window—exactly the kind of division o...
分类:
Web程序 时间:
2015-01-06 21:26:47
阅读次数:
147