解决Sql Server2000中无法打开1433端口

  • Post author:
  • Post category:其他

sql server 2000无法打开1433端口- - 1.如果你是win2003,那么一定要安装sql的补丁sp3a 检查你的SQL有没有打补丁,没有的话要打上补丁,检查的方法是在查询分析器中运行: select @@version 如果出来的版本号是8.00.760以下,则表明你未安装sp3的补丁,要装上. SQL补丁下载: 全部补丁的位置 http://www.microsoft.com/…

继续阅读 解决Sql Server2000中无法打开1433端口

pyqt5:Button的信号槽处理机制

  • Post author:
  • Post category:其他

模板如下: # -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'mainwindow.ui' # # Created by: PyQt5 UI code generator 5.15.9 # # WARNING: Any manual changes made to this file will…

继续阅读 pyqt5:Button的信号槽处理机制

阿里云OSS对象存储

  • Post author:
  • Post category:其他

一、导入阿里云依赖 <!-- 阿里云OSS依赖--> <dependency> <groupId>com.aliyun.oss</groupId> <artifactId>aliyun-sdk-oss</artifactId> <version>3.10.2</version> </depende…

继续阅读 阿里云OSS对象存储

java解析阿里云上的db文件获取值

  • Post author:
  • Post category:java

Connection c = null; PreparedStatement st = null; ResultSet rs = null; Class.forName("org.sqlite.JDBC"); c =  DriverManager.getConnection("jdbc:sqlite:"+sInfo.getFileName()); logger.info("jdbc:sqlite:…

继续阅读 java解析阿里云上的db文件获取值

快速定位mysql持有锁

  • Post author:
  • Post category:mysql

转自: http://www.52sql.com/?p=195 夜深,回想这段时间经常遇到的mysql Locked状态的进程,有的是因为代码中事务没有提交(鄙视)导致此条sql一句一直处于挂起状态,这类还好查。如果访问量比较大导致的,那么很可能会出现大量Locked状态的进程。但是却不能方便的识别是哪条SQL引起的问题。很多人遇到此类问题时,多半是通过PhpMyAdmin查询可疑SQL,然后KI…

继续阅读 快速定位mysql持有锁

AtCoder Beginner Contest 236 (C-E)

  • Post author:
  • Post category:其他

C - Route Map 题意 :给定n个S串和m个T串,对于每一个S串问是否其出现在T串中。 题解 :map模拟记录T串,对于S,询问map中是否存在就行。 AC代码: #include <iostream> #include <algorithm> #include <cstring> #include <queue> #include <…

继续阅读 AtCoder Beginner Contest 236 (C-E)

mx250显卡天梯图_MX250和MX350哪个好一点,区别和差距在哪里?求推荐?

  • Post author:
  • Post category:其他

2 Nvidia mx250和mx350是两款非常合适比较的显卡,mx350和mx250都是基于pascal架构,mx250是基于GP108的GPU,mx350是基于GP107的GPU。我们的想法是看mx250和mx350相比,mx250的性能有多接近。MX350的TDP为25和mx250的TDP为25W。 规格概述 Geforce mx250和Geforce mx350都是pascal GPU。…

继续阅读 mx250显卡天梯图_MX250和MX350哪个好一点,区别和差距在哪里?求推荐?

【C语言】柔性数组

  • Post author:
  • Post category:其他

柔性数组 1. 柔性数组介绍 2. 柔性数组特点 3. 用例 3.1 代码一: 3.2 代码二: 4. 柔性数组优势: 1. 柔性数组介绍 也许你从来没有听说过柔性数组(flexible array)这个概念,但是它确实是存在的。 C99 中,结构中的最后一个元素允许是未知大小的数组,这就叫做『柔性数组』成员。 例如:零长度数组概念 struct S { int n; char c; int ar…

继续阅读 【C语言】柔性数组

We‘re sorry but web-admin doesn‘t work properly without JavaScript enabled. Please enable it to cont

  • Post author:
  • Post category:java

前言: 这里是vue获取本地js文件报错。 报错截图: 报错原因: history的话必须后端来配合,这里请求本地文件的时候,是默认一个服务地址,并不是我们的直接路径,请求报错, 解决办法: 1、将history改成hash 2、使用history,请求后端同时在nginx配置允许访问, 网上其他解决办法: 1、mode类型 前端修改方式:将mode类型由history改成hash; 后端修改方式…

继续阅读 We‘re sorry but web-admin doesn‘t work properly without JavaScript enabled. Please enable it to cont

4、web(js):js 操作table: insertRow(),deleteRow(),insertCell(),deleteCell()方法

  • Post author:
  • Post category:其他

本文来自:http://www.cnblogs.com/dongxizhen/archive/2013/01/11/2856229.html 表格有几行: var trCnt = table.rows.length;  ( table为Id ) 每行有几列:for (var i=0; i<trCnt; i++)                     table.rows[i].cells.…

继续阅读 4、web(js):js 操作table: insertRow(),deleteRow(),insertCell(),deleteCell()方法