上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 120 下一页
摘要: 1.Connect to redis. 2.StackExchange.Redis.RedisCommandException: 'This operation is not available unless admin mode is enabled: FLUSHDB' ConnectionMul 阅读全文
posted @ 2019-09-01 19:57 FredGrit 阅读(243) 评论(0) 推荐(0)
摘要: 1.RestSharp. Nuget install RestSharp,Newtonsoft.Json. 2.HttpWebRequest 3.HttpClient 4.ServiceStack. Install ServiceStack in Nuget. 阅读全文
posted @ 2019-08-30 11:53 FredGrit 阅读(381) 评论(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 阅读(151) 评论(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 阅读(256) 评论(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 阅读(174) 评论(0) 推荐(0)
摘要: //Export data to excel via NPOI //Convert excel file to DataTable 阅读全文
posted @ 2019-08-28 16:46 FredGrit 阅读(149) 评论(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 阅读(293) 评论(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 阅读(569) 评论(0) 推荐(0)
摘要: install-package PdfSharp -v 1.51.5185-beta 阅读全文
posted @ 2019-07-04 16:17 FredGrit 阅读(716) 评论(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 阅读(1286) 评论(0) 推荐(0)
上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 120 下一页