`
文章列表
错误 create or replace procedure del_team(  userid in t_user.id%type,  teamid out t_user.teamid%type )asbegin  select t.teamid into teamid from t_user t where t.id=userid;  delete from t_user t where t.id=userid;  delete from t_gps t where t.userid=userid;commit;end; 删除某条记录,会删除表的全部数据。 问题是变量命 ...
[{ attributes: { id : "node_identificator"},  data: {title:"test",icon:"./file.png", attributes:{"rel":"file"}},  state: "closed",   children: [ ] },{ 格式同上 }]------------------------------------------------------------------------------- 说 ...
在Android开发中通过localhost或127.0.0.1访问本地服务器时, 06-18 07:18:25.541: W/System.err(3170): java.net.ConnectException: /127.0.0.1:9090 - Connection refused异常。   为什么会报这个异常呢?因为Android模拟器本身把自己当做了localhost或127.0.0.1,而此时我们又通过localhost或127.0.0.1访问本地服务器,所以会抛出异常了。   在模拟器上可以用10.0.2.2代替127.0.0.1和localhost; 另外如果是在 ...
// (这样设置会闪出标题然后消息,最好使用主题的方式配置:android:theme="@android:style/Theme.NoTitleBar.Fullscreen")requestWindowFeature(Window.FEATURE_NO_TITLE);// 设置全屏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
正在参与的项目是手机客户端(iphone/android)请求服务器的业务模式, 早上iphone同事问起我,说到“为什么wifi连接网络能从服务器192.168.1.****中获取数据,而连接GPRS或者3G网络无法获取数据”,我打开网页,查看了服务器Log,确实连接GPRS和3G不能收到客户端请求,沉思许久,突然大惊,答:“服务器是内网地址*******” 囧连接公司wifi能访问内网地址,而连接GPRS和3G网络则不能访问内网地址(没有做外网映射)。
Global site tag (gtag.js) - Google Analytics