上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 44 下一页
摘要: All about WP7 Isolated Storage – intro to Isolated Storage All about WP7 Isolated Storage - Folders and Files All about WP7 Isolated Storage - Store data in IsolatedStorageSettingsAll about WP7 Isolated Storage - Read and Save Text filesAll about WP7 Isolated Storage - Read and Save XML files using 阅读全文
posted @ 2011-10-17 13:32 higirle 阅读(172) 评论(0) 推荐(0) 编辑
摘要: Windows Phone 31Welcome to the 31 Days of Windows Phone. This is a journey through a ton of different topics in development for the Windows Phone platform.If you haven't had a chance to read my previous series already, check out:31 Days of Silverlight28 Days of Did-You-Knows in Technology (aka D 阅读全文
posted @ 2011-10-14 16:59 higirle 阅读(145) 评论(0) 推荐(0) 编辑
摘要: http://www.w3schools.com/sql/sql_view.aspSQL CREATE VIEW SyntaxCREATE VIEW view_name ASSELECT column_name(s)FROM table_nameWHERE condition Create(Alter) view Testestst1asSELECT Test1.Id, Test2.Id As IDD from Test1 inner join Test2 on Test1.Id = Test2.Id where Test1.Id = 1 and Test2.Name = '11 阅读全文
posted @ 2011-09-14 17:07 higirle 阅读(309) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/leo870625/article/details/61278741.视图是数据库数据的特定子集。可以禁止所有用户访问数据库表,而要求用户只能通过视图操作数据,这种方法可以保护用户和应用程序不受某些数据库修改的影响。2.视图是抽象的,他在使用时,从表里提取出数据,形成虚的表。 不过对他的操作有很多的限制 。3. 而且视图是永远不会自己消失的除非你删除它。 视图有时会对提高效率有帮助。临时表几乎是不会对性能有帮助,是资源消耗者。 视图一般随该数据库存放在一起,临时表永远都是在tempdb里的。 4.视图适合于多表连接浏览时使用!不适合增、删、改.,存.. 阅读全文
posted @ 2011-09-14 16:53 higirle 阅读(577) 评论(0) 推荐(0) 编辑
摘要: ----------------query aggregation function and group by ------------------------- SELECT Test1.Test, avg(Test1.Id) As avg, SUM(Test1.Id) As SUm, COUNT(Test1.Id) As Count FROM [Test1] GROUP BY Test1.Test HAVING count(Test1.Id)< 3 ---- Query data from multiply data tables----use select in---------- 阅读全文
posted @ 2011-09-14 14:01 higirle 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 8down voteTo begin, from your link:Control.Invoke: Executes on the UI thread, but calling thread waits for completion before continuing.Control.BeginInvoke: Executes on the asynchronous UI thread, and calling thread doesn't wait for completion.and from MSDN:BeginInvoke executes the specified del 阅读全文
posted @ 2011-09-07 16:36 higirle 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 先看以下代码: using System;using System.Text;using System.Windows.Forms;using System.Threading; namespace 线程间通讯{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } //1.创建Invoke函数,大致如下: /// <summary> /// Delegate function to be invoked by main thread /// </summary> pr 阅读全文
posted @ 2011-09-07 16:19 higirle 阅读(315) 评论(0) 推荐(0) 编辑
摘要: http://developer.51cto.com/art/200908/141606.htm--http://developer.51cto.com/art/200908/141606.htm本文继续C#线程系列讲座之四,C#线程同步与死锁。AD:在上一讲介绍了使用lock来实现C#线程同步。实际上,这个lock是C#的一个障眼法,在C#编译器编译lock语句时,将其编译成了调用Monitor类。先看看下面的C#源代码:public static void MyLock() { lock (typeof(Program)) { } } 上面的代码通过... 阅读全文
posted @ 2011-09-07 15:49 higirle 阅读(284) 评论(0) 推荐(0) 编辑
摘要: http://developer.51cto.com/art/201104/255185.htmASP.NET对请求处理过程的操作与分析2011-04-13 14:57 peter 中国IT实验室 我要评论(0) 字号:T | TASP.NET请求处理过程是基于管道模型的,在模型中ASP.NET把http请求传递给管道中的所有模块。每个模块都接收http请求并有完全控制权限。本文就ASP.NET开发语言对请求处理过程进行详细分析,希望能对各位读者起到或多或少的帮助。AD: 当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个. 阅读全文
posted @ 2011-09-05 18:02 higirle 阅读(129) 评论(0) 推荐(0) 编辑
摘要: http://www.itwis.com/html/net/c/20101115/9558.htmlC#集合类之Array,ArrayList,List<T>的用法,net有哪些集合类?array和ArrayList有什么区别?Hashtable与集合有什么不一样?....等等.这时才意识到,如果对.net本身提供的集合类不了解,根本不会明白引用Iesi.Collections的用意.由<<CLR via C#>>的书中所说:"所有的数组(如int[],FileStream[],object[])都隐式派生自System.Array,所有数组都隐式 阅读全文
posted @ 2011-09-05 15:22 higirle 阅读(338) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 44 下一页