默认情况下是不允许在远程登录mysql数据库的使用一下命令可以改变现状://更改登录规则,把所有的权限都给root这个账户,%是指在任何地方都可以登录,‘123456789’是登录密码grant all privileges on *.* to 'root'@'%' identified by '1...
分类:
数据库 时间:
2014-06-22 23:42:28
阅读次数:
248
http://guides.rubyonrails.org/routing.html#crud-verbs-and-actionscreates seven different routes in your application, all mapping to thePhotoscontrolle...
分类:
其他好文 时间:
2014-06-22 23:33:47
阅读次数:
330
Minimum Path Sum:Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along...
分类:
其他好文 时间:
2014-06-22 23:06:39
阅读次数:
290
--Oracle创建表
create table t_test
(
test_id Number ,
gender char(1),
test_name nvarchar2(10) --注意最后一个字段结尾不能有分号
)
--Oralce向t_test表里插入数据
insert into t_test(test_id,gender,test_...
分类:
数据库 时间:
2014-06-22 21:56:45
阅读次数:
272
1、XyzMapper.xml
insert
id=“doSomething"
parameterType="map"
useGeneratedKeys="true"
keyProperty=“yourId">
...
insert>
或
insert id=“doSomething" parameterType=“com.xx.y...
分类:
其他好文 时间:
2014-06-22 21:14:32
阅读次数:
261
GoldenGate之update操作节点间不同步
故障现象:节点1、节点2进行update操作后,不能实现同步
解决过程:
1、常规巡检:
检查进程状态:正常
GGSCI (gc1) 7> info all
Program Status Group Lag Time Since Chkpt
MANAGER...
分类:
其他好文 时间:
2014-06-22 21:08:14
阅读次数:
402
在struts映射中重复出现的模式
动作方法
描述
下一个动作方法
add
为save准备网页
save
save
提交INSERT
list
edit
为update准备网页
update
update
提交UPDATE
list
destroy
为remove准备网页
remove
remov...
分类:
其他好文 时间:
2014-06-22 19:41:19
阅读次数:
194
insert into prefix_${table_name} (a, b, c) values (#{a}, #{b}, #{c})
${} 表示直接使用字面量(literal value)
#{} 表示这个是个参数
如果 table_name 是 “ABC”
则 ${table_name} 是 ABC
#{table_name} 是 “ABC"...
分类:
数据库 时间:
2014-06-22 00:58:21
阅读次数:
240
List of OpenFlow Software Projects (that I know of) http://yuba.stanford.edu/~casado/of-sw.html (I am trying to keep a running list of all OpenFlow-re...
分类:
其他好文 时间:
2014-06-21 15:44:58
阅读次数:
323
这一节我们来分析Mirror Mirror就是配置一个bridge,将某些包发给指定的mirrored ports 对于包的选择: select_all,所有的包 select_dst_port select_src_port select_vlan 对于指定的目的: output_port (SP...
分类:
其他好文 时间:
2014-06-21 15:32:53
阅读次数:
227