上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页
摘要: 一、参照原数据表创建临时表 CREATE TEMP TABLE temp_testbulkcopy ON COMMIT DROP as (select * from testbulkcopy limit 0); 1、temp_testbulkcopy 为临时表的表名 2、testbulkcopy 为 阅读全文
posted @ 2020-06-17 19:15 星星c# 阅读(1389) 评论(0) 推荐(0) 编辑
摘要: 一、使用copy命令从数据库中导出数据 COPY testbulkcopy TO 'C:/data/testOutPut.csv' WITH csv DELIMITER '|' WITH csv 代表导出文件的格式 DELIMITER '|' 表示用竖杠进行分隔字段的值备注:在实际使用中 WITH 阅读全文
posted @ 2020-06-17 18:56 星星c# 阅读(3246) 评论(0) 推荐(0) 编辑
摘要: <script type="text/x-kendo-template" id="myTemplate"> #if(isAdmin){# <li>#: name # is Admin</li> #}else{# <li>#: name # is User</li> #}# </script> 阅读全文
posted @ 2020-06-15 19:38 星星c# 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 一、添加System.Data.SQLite引用 二、添加linq2db引用 三、新建实体类 [Table("SysInfo")] public partial class SysInfo { [Column("Id"), PrimaryKey] [System.ComponentModel.Dat 阅读全文
posted @ 2020-06-09 18:06 星星c# 阅读(1908) 评论(0) 推荐(0) 编辑
摘要: 一、关掉“多租户”的设置(我现在用不到,如果需要到时候再开启) 在Core的 ******CoreModule.cs里,把MultiTenancyEnabled里的值改为false就可以了。 二、建立实体 public class SupplierCompanyInfo : FullAuditedE 阅读全文
posted @ 2020-06-03 10:20 星星c# 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 一、引用NuGetGet里的npoi,如下图: 二、打开文件 Stream stream = File.OpenRead(@"C:\Test\\11.docx"); XWPFDocument doc = new XWPFDocument(stream); 三、获取word里面所有的表格 var al 阅读全文
posted @ 2020-06-03 10:12 星星c# 阅读(2424) 评论(1) 推荐(0) 编辑
摘要: 提前下载好安装包: http://get.enterprisedb.com/postgresql/postgresql-12.2-4-windows-x64-binaries.zip 一、确定安装目录 提前创建如下的文件夹 主目录:D:\Program Files\PostgresqlData目录: 阅读全文
posted @ 2020-05-14 14:42 星星c# 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 1、修改Startup,添加如下代码: app.UseMvc(routes => { routes.MapAreaRoute( name: "PreviewFile", areaName: "PreviewFile", template: "PreviewFile/{controller=Home} 阅读全文
posted @ 2020-05-09 21:45 星星c# 阅读(885) 评论(0) 推荐(0) 编辑
摘要: { field: "SCORE", title: "分数", attributes: { style: "text-align:center" }, headerAttributes: { style: "text-align:center" }, template: GetScoreTemplat 阅读全文
posted @ 2020-04-20 15:52 星星c# 阅读(228) 评论(0) 推荐(0) 编辑
摘要: public static string String2Unicode(string source) { byte[] bytes = Encoding.Unicode.GetBytes(source); StringBuilder stringBuilder = new StringBuilder 阅读全文
posted @ 2020-03-30 20:08 星星c# 阅读(735) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页