代码改变世界

掩码转换为正则表达式

2012-06-19 10:44 by 小sa, 706 阅读, 0 推荐, 收藏, 编辑
摘要:bool MatchCheck(string sn,string pattern) { return Regex.IsMatch(sn, pattern, RegexOptions.None); } /// <summary> /// 掩码转换为正则表达式 /// </summary> /// <param name="msk">掩码 CTH********F2GV**</param> /// <param name="token">掩码符号* #</... 阅读全文

php 处理 mysql to json, 前台js处理

2012-05-23 20:02 by 小sa, 272 阅读, 0 推荐, 收藏, 编辑
摘要:public function GetJson(){ $query="select * from table"; $result = mysql_query($query); $rows = array(); while($row = mysql_fetch_array($result)){ $rows []= $row; } echo json_encode($rows);}js处理 $.get( "./bll.php", option, ... 阅读全文

php写导入,导出 mysql csv

2012-05-23 19:47 by 小sa, 267 阅读, 0 推荐, 收藏, 编辑
摘要:php 从 csv转换 tsqlfunction csv2sql($table, $csv_fieldname = 'csv') { $handle = fopen($csv_fieldname, 'r'); if (!$handle) die('Cannot open uploaded file.'); //$fields=var_dump($csvData); $row_count = 0; $sql_query = ""; $rows = array (); //Read the file as csv while (( 阅读全文

提高PHP代码质量36计

2012-05-15 15:40 by 小sa, 180 阅读, 0 推荐, 收藏, 编辑
摘要:本文详细的介绍了PHP代码的一些优点和缺点,以及编写代码更多的方法,希望能给网友们在代码质量这方面能有所提高。详细请看下文AD:1.不要使用相对路径常常会看到:require_once('http://www.cnblogs.com/lib/some_class.php');该方法有很多缺点:它首先查找指定的php包含路径, 然后查找当前目录.因此会检查过多路径.如果该脚本被另一目录的脚本包含, 它的基本目录变成了另一脚本所在的目录.另一问题, 当定时任务运行该脚本, 它的上级目录可能就不是工作目录了.因此最佳选择是使用绝对路径:define('ROOT',&# 阅读全文

sap ok code

2012-03-23 21:12 by 小sa, 417 阅读, 0 推荐, 收藏, 编辑
摘要:OK Code ValuesR/3 note no. 26171Direct call of transactions, session handling:BatchABAP/4BufferR/3 note no. 45507R/3 note no. 26171The design of the R/3 System is such that all programs can be called via menu options. In addition tergonomic advantages (nneed tlearn transaction codes), this procedure 阅读全文

sap function 常用的一些系统函数

2012-03-23 21:12 by 小sa, 1505 阅读, 0 推荐, 收藏, 编辑
摘要:SAP FunctionsABAP_DOCU_DOWNLOADDownload ABAP documentation in HTML format.APPL_LOG_DELETEWith this function module you delete logs in the database according to specified selection conditionsAPPL_LOG_DISPLAYWith this function module you can analyze logs in the database.APPL_LOG_DISPLAY_INTERNWith thi 阅读全文

sap links /sap 学习资源链接

2012-03-23 21:11 by 小sa, 299 阅读, 0 推荐, 收藏, 编辑
摘要:SAP and ABAP Links国内的大牛们:http://blog.csdn.net/compassbutton/Jack Wuhttp://blog.csdn.net/lijunhai/lijunhai的专栏http://blog.chinaunix.net/u/28793SAP砍刀http://www.cnblogs.com/qiangsheng强晟http://blog.tom.com/lxd_52_zl快乐生活http://abaper.blogbus.com/日积月累http://blog.chinaunix.net/u1/40527/index.html老白http://bl 阅读全文

SAP Tables 表

2012-03-23 21:09 by 小sa, 2424 阅读, 0 推荐, 收藏, 编辑
摘要:http://abap4.tripod.com/index.html参考System TablesADCPPerson/Address assignment (central address administration)ADIRACCESSTable to store keys for TADIR objectsADR2Telephone numbers (central address admin.)ADRPPersons (central address administration)APQDDATA DEFINITION QueueAPQIQueue info definitionD0 阅读全文

sap tips/ sap 小技巧

2012-03-17 14:53 by 小sa, 604 阅读, 0 推荐, 收藏, 编辑
摘要:Other Useful TipsAdding Custom Fields to POs, Outline Agreements, and RFOsAuthorization Failures on Fixed Asset ReportsFind Programs That Use a Layout SetUnderstanding Date Selections Using the HR Logical DatabasePrinting Blank LinesCentral Address ManagementUseful User ParamtersMaintaining Trailing 阅读全文

读/写byte[] 类型 MS SQL数据库

2012-03-07 13:20 by 小sa, 665 阅读, 0 推荐, 收藏, 编辑
摘要://写入流 public void Write(byte[] val) { using (SqlConnection con = new SqlConnection(connectionString)) { con.Open(); using (SqlCommand cmd = new SqlCommand("INSERT INTO Temp_Compress( BinData ) VALUES (@binaryValue)", con)) ... 阅读全文