01 2015 档案

摘要:使用distinct 函数获取DataFromCountry 字段不同的值select distinct DataFromCountry from PAP_Selloutselect distinct DataFromCountry from PAP_Inventory 阅读全文
posted @ 2015-01-28 11:27 吴枫 阅读(169) 评论(0) 推荐(0)
摘要:C#开发命名规范 1. 定义 Pascal大写:一种大小写形式,所有单词第一个字母大写,其他字母小写。 Camel 大写:一种大小写形式,除了第一个单词,所有单词第一个字母大写,其 他字母小写。 例:HelloWorld(Pascal大写),helloWorld(Camel 大写)。 Camel ... 阅读全文
posted @ 2015-01-26 10:26 吴枫 阅读(309) 评论(0) 推荐(0)
摘要:简单的方法想日志中追加内容public static void updateSql(string Name,string str) { FileStream fs = new FileStream(@"D:\Acer\logSql.txt", FileMode.A... 阅读全文
posted @ 2015-01-23 15:21 吴枫 阅读(202) 评论(0) 推荐(0)
摘要:一些参考案例下面是一些常用的ftp操作文件的方法案列1using System;using System.Collections.Generic;using System.Text;using System.IO;using System.Net;using System.Windows.Forms... 阅读全文
posted @ 2015-01-21 17:54 吴枫 阅读(626) 评论(0) 推荐(0)