摘要: /// <summary> /// 去除特殊字符 /// </summary> /// <param name="text"></param> /// <returns></returns> public static string MakeValidFileName(string text) { 阅读全文
posted @ 2024-01-22 14:50 _York 阅读(3) 评论(0) 推荐(0) 编辑
摘要: static ZipHelper() { Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); var gbk = Encoding.GetEncoding("GBK"); ICSharpCode.SharpZipLib.Zip 阅读全文
posted @ 2024-01-18 10:46 _York 阅读(14) 评论(0) 推荐(0) 编辑
摘要: import { ref, defineComponent, watch,getCurrentInstance } from "vue"; import { useRoute } from 'vue-router'; export default defineComponent({ setup() 阅读全文
posted @ 2023-11-10 14:12 _York 阅读(99) 评论(0) 推荐(0) 编辑
摘要: SELECT c.relname AS ""table_name"",a.attnum AS ""ordinal_position"", a.attname AS column_name, t.typname AS udt_name, CASE WHEN t.typcategory = 'C' TH 阅读全文
posted @ 2023-11-01 17:54 _York 阅读(85) 评论(0) 推荐(0) 编辑
摘要: @echo off rem 打开网页start "" "http://192.168.9.101:9000" rem 等待 5 秒钟ping -n 6 127.0.0.1 > nul rem 关闭浏览器窗口taskkill /im msedge.exe /f 阅读全文
posted @ 2023-10-30 14:54 _York 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1、新建数据库数据目录(注意目录权限) 2、打开服务,停止postgresql数据库服务 3、运行cmd,输入regedit打开注册表,修改 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\postgresql-x64-9.1\ImagePa 阅读全文
posted @ 2023-10-19 08:30 _York 阅读(212) 评论(0) 推荐(0) 编辑
摘要: https://files.cnblogs.com/files/tangchun/Optimizer-15.8.zip?t=1696842672&download=true 阅读全文
posted @ 2023-10-09 17:14 _York 阅读(12) 评论(0) 推荐(0) 编辑
摘要: /** * @license BSD * @copyright 2014-2023 hizzgdev@163.com * * Project Home: * https://github.com/hizzgdev/jsmind/ */ ; (function ($w) { 'use strict'; 阅读全文
posted @ 2023-10-08 10:53 _York 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Dowload(url, fileName) { let xmlResquest = new XMLHttpRequest(); xmlResquest.open('GET', url, true); xmlResquest.setRequestHeader('Content-type', 'app 阅读全文
posted @ 2023-10-01 16:43 _York 阅读(515) 评论(0) 推荐(0) 编辑
摘要: CREATE OR REPLACE FUNCTION "public"."add_sequence_to_table"("p_table_name" text, "p_column_name" text) RETURNS "pg_catalog"."void" AS $BODY$ DECLARE m 阅读全文
posted @ 2023-09-30 17:08 _York 阅读(246) 评论(0) 推荐(0) 编辑