上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 22 下一页
摘要: SELECT concat('DROP TABLE IF EXISTS ', table_name, ';')FROM information_schema.tablesWHERE table_schema = 'mydb';mydb换成你想删除的数据库的名字这样可以生成一个批量处理的sql语句,你 阅读全文
posted @ 2018-09-14 09:18 恋之呓 阅读(145) 评论(0) 推荐(0) 编辑
摘要: use storeGOdeclare @sql varchar(8000)while (select count(*) from sysobjects where type='U')>0beginSELECT @sql='drop table ' + nameFROM sysobjectsWHERE 阅读全文
posted @ 2018-09-14 09:07 恋之呓 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 直接使用Navicat通过IP连接会报各种错误,例如:Error 1130: Host '192.168.1.80' is not allowed to connect to this MySQL server。 经过个人验证,得到解决方法,如下: 授权法: 1.首先使用localhost登录到想要 阅读全文
posted @ 2018-08-22 09:38 恋之呓 阅读(289) 评论(0) 推荐(0) 编辑
摘要: .net5 配置静态文件 阅读全文
posted @ 2018-08-03 10:14 恋之呓 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 今天想着如何大批量插入数据到数据库中 最开始的想法是使用insert循环插入 但每次都要创建数据库连接 这是非常消耗时间和消耗资源的事。后在网上看到了说使用SqlBulkCopy ,就看了看文档和别人的列子 感觉理解到了一点大概的使用方法 就打算记录下来 方便自己以后使用 [csharp] view 阅读全文
posted @ 2018-08-03 10:13 恋之呓 阅读(373) 评论(0) 推荐(0) 编辑
摘要: {".323", "text/h323"}, {".3g2", "video/3gpp2"}, {".3gp", "video/3gpp"}, {".3gp2", "video/3gpp2"}, {".3gpp", "video/3gpp"}, {".7z", "application/x-7z-c 阅读全文
posted @ 2018-06-28 16:28 恋之呓 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 两种方法: /// <summary> /// /// </summary> /// <returns></returns> private string GetStrConn(string ConnType) { try { StreamReader sr = new StreamReader(S 阅读全文
posted @ 2018-06-26 11:20 恋之呓 阅读(471) 评论(0) 推荐(0) 编辑
摘要: Asp.Net Core2.0获取客户IP地址,及解决发布到Ubuntu服务器获取不到正确IP解决办法 1、获取客户端IP地址实现方法(扩展类) 1 using Microsoft.AspNetCore.Http; 2 using Microsoft.AspNetCore.Mvc.ModelBind 阅读全文
posted @ 2018-06-24 14:35 恋之呓 阅读(11236) 评论(1) 推荐(0) 编辑
摘要: 用管理员身份运行vs 添加引用 using Microsoft.AspNetCore.Cors; 修改 public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) 阅读全文
posted @ 2018-06-21 12:59 恋之呓 阅读(2241) 评论(0) 推荐(0) 编辑
摘要: 1.今天 当我 执行 git add somefile 的时候,出现 如下 错误: 解决方法: 2. 编译ICS时 出现 如下错误: build/core/java.mk:20: *** dalvik/dexgen: Invalid LOCAL_SDK_VERSION '4' Choices are 阅读全文
posted @ 2018-05-09 09:50 恋之呓 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 22 下一页