上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 76 下一页
摘要: 1.RestSharp. Nuget install RestSharp,Newtonsoft.Json. 2.HttpWebRequest 3.HttpClient 4.ServiceStack. Install ServiceStack in Nuget. 阅读全文
posted @ 2019-08-30 11:53 FredGrit 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 1.query all the store prodecure in the specified db. select * from INFORMATION_SCHEMA.ROUTINES where ROUTINE_TYPE='PROCEDURE'; 2.find the store proced 阅读全文
posted @ 2019-08-30 09:18 FredGrit 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1.Right click on the *.config file in the dll project,then select Properties,as the below snapshot illustrates. 2.Set 'Copy to Output Directory' as 'C 阅读全文
posted @ 2019-08-29 20:06 FredGrit 阅读(235) 评论(0) 推荐(0) 编辑
摘要: public class DataConvert { public static List ConvertDataTable(DataTable dt) { List data = new List(); foreach (DataRow row in dt.Rows) { ... 阅读全文
posted @ 2019-08-28 22:04 FredGrit 阅读(162) 评论(0) 推荐(0) 编辑
摘要: //Export data to excel via NPOI //Convert excel file to DataTable 阅读全文
posted @ 2019-08-28 16:46 FredGrit 阅读(136) 评论(0) 推荐(0) 编辑
摘要: static async Task MySQLTransDemo() { try { using(dbConnection) { dbConnection.Open(); //The object matched type such as class must have the column fie 阅读全文
posted @ 2019-08-09 16:03 FredGrit 阅读(283) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/15438840/mysql-error-1364-field-doesnt-have-a-default-values. use super priviledge. Error Code: 1227. Access denie 阅读全文
posted @ 2019-08-08 19:50 FredGrit 阅读(556) 评论(0) 推荐(0) 编辑
摘要: install-package PdfSharp -v 1.51.5185-beta 阅读全文
posted @ 2019-07-04 16:17 FredGrit 阅读(696) 评论(0) 推荐(0) 编辑
摘要: Nuget install iText7 using iText.Kernel.Pdf; using iText.Kernel.Utils;using System;using System.Collections.Generic; namespace ConsoleApp1{ public cla 阅读全文
posted @ 2019-07-01 19:37 FredGrit 阅读(1176) 评论(0) 推荐(0) 编辑
摘要: using System.IO; using System.Drawing; using System.Drawing.Imaging; using System.Threading; using System.Windows.Forms; using System; namespace ConsoleApp1 { public class CaptureWebPage { ... 阅读全文
posted @ 2019-07-01 19:34 FredGrit 阅读(626) 评论(0) 推荐(0) 编辑
上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 76 下一页