摘要:
把你目前查到结果集定义为一个临时表 tempTable下面是如何查 SELECT * FROM tempTable where 关键字=‘’举例select book_num,book_name,book_type from(select * from bookinfo ) as temptable where book_num=2 阅读全文
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Configuration; 4 using System.Web.Configuration; 5 using System.Text; 6 using System.IO; 7 8 /// 9 /// SystemConfig 的摘要说明 10 /// 11 public static class SystemConfig12 {13 private static Configuration ConfigFile;14 pr... 阅读全文
摘要:
The resource could not be loaded because the App Transport Security policy reguir 原因:iOS9引入了新特性App Transport Security (ATS); 新特性要求App内访问的网络必须使用HTTP... 阅读全文
摘要:
iOS7默认状态栏文字颜色为黑色 修改为白色的方法:(chenyong注意 我的Status bar style 使用的仍是默认值Gray style(default))1在Info.plist中设置View controller-based status bar appearance 为NO2 在... 阅读全文