02 2024 档案
摘要: private TaskScheduler mpr_ts_UIContext; private void button1_Click(object sender, EventArgs e) { progressBar1.Visible = true; progressBar1.Value = 0
阅读全文
摘要:下载安装开发包 .NET SDKs downloads for Visual Studiohttps://dotnet.microsoft.com/download/visual-studio-sdks
阅读全文
摘要:通过SQL数据库账号连接 string conString = "server=(local);uid=sa;pwd=sa;database=Student"; string conString ="Data Source=(local);uid=sa;pwd=sa;database=Student
阅读全文
摘要:报错代码为 jsonObj过大 public ActionResult GetColumn(string table) { object jsonTreeObj = _fileBll.GetColumnBll(TableName); return Json(JsonRequestBehavior.A
阅读全文
摘要:select * from (select * from atable order by id asc limit 0,999999999) 没有limit 排序不会生效
阅读全文
摘要:SELECT 'DROP table USERNAME.'||table_name||';' FROM all_tables WHERE owner='ISA_GTJG1'; ISA_GTJG1 替换为该用户
阅读全文
摘要:Blob blob = (Blob) obyte;InputStream is=blob.getBinaryStream();String filePath = "c://a.pdf";FileOutputStream fos = new FileOutputStream(filePath);//定
阅读全文
摘要:http://www.cooool.live:8011/wordpress/wp-content/uploads/2024/02/开发Twain协议X64虚拟扫描仪.zip
阅读全文
摘要:string SName = TextBox1.Text.Trim(); WebClient client = new WebClient();//需要先请求接口 //把接口转换成byte数据流 Byte[] byteTest = client.DownloadData("https://resta
阅读全文
摘要:int[] a = { 1, 8, 3, 6, 9, 4 }; for (int i = 0; i < a.Length-1; i++) { for (int j = 0; j < a.Length-i-1; j++) { if (a[j]>a[j+1]) { int temp = a[j]; a[
阅读全文
摘要:for (int i = 1; i <= 9; i++) //外层循环控制行数 { for (int j = 1; j <= i; j++) //内层循环每行的个数 { Console.Write(j + "*" + i + "=" + i * j +"\t"); } Console.WriteLi
阅读全文
摘要:引入 SharpCompress https://files.cnblogs.com/files/blogs/707150/SharpCompress_dll_0.24.0.zip?t=1708670187&download=true string targetFile="c:\\test.zip"
阅读全文
摘要:DataSet ds1 = PeopleSetBLL.GetPeopleGroup();//获取人员合集 DataTable dt1 = ds1.Tables[0]; DataSet ds2 = PeopleSetBLL.SelectByName(null);//获取人员设置中人员合集 DataTa
阅读全文