码迷,mamicode.com
首页 >  
搜索关键字:program    ( 9373个结果
SQL Server 数据库部分常用语句小结(四)
42.统计APP应用的DB连接及IP情况 select b.hostname ,a.client_net_address, b.program_name ,count(1) as Qtyfrom sys.dm_exec_connections a(nolock) inner join sys.sys ...
分类:数据库   时间:2020-06-13 10:55:12    阅读次数:75
linux jar开机自启
1. 创建脚本文件 /root/start.sh # !/bin/bash# program# test java open export JAVA_HOME=/root/home/vcc/java/jdk1.8.0_221export JRE=/root/home/vcc/java/jdk1.8. ...
分类:编程语言   时间:2020-06-12 14:55:22    阅读次数:108
VSCode Node cannot launch program setting the 'outFiles' attribute might help
简介:项目迁移到GitLab 后不能调试,各种百度谷歌 stackoverflow git vscode issue 无果, N天后解决 明显和outFiles没关系 解决办法: add configuration 出现 "type": "pwa-node" "version": "0.2.0", ...
分类:其他好文   时间:2020-06-12 10:39:40    阅读次数:156
安装node.js和vue
1.在官网上下载Node.js安装包 https://nodejs.org/zh-cn/ 2.点击安装,一直下一步下一步就行,这里就不在赘述了。 3.安装完之后,如果没有选安装路径的话,一般都是在【C:\Program Files\nodejs】 4.添加两个文件夹【node_cache】和【nod ...
分类:Web程序   时间:2020-06-11 11:58:42    阅读次数:119
C#连接MySQL数据库
本文章是建立在已经安装MySQL数据库的前提,默认安装在C:\Program Files (x86)\MySQL,建议在安装时选中Connector.NET 6.9的安装,里面有MySQL与C#连接的动态链接库。 帮助文档C:\Program Files (x86)\MySQL\Connector. ...
分类:数据库   时间:2020-06-10 10:53:19    阅读次数:75
STM32 学习:IAP有关介绍
title: mcu-stm32-IAP-0-about date: 2020-05-27 08:51:58 categories: tags: - iap - stm32 - about 章节概述: 介绍什么是IAP、IAP的前置知识。 IAP IAP(In Application Program ...
分类:其他好文   时间:2020-06-09 23:44:34    阅读次数:63
MGM v. Grokster
What happened? MGM movie and song producer. Similar peer to peer program as Napster, illegal distribution of copyrighted movies and songs. Grokster tr ...
分类:其他好文   时间:2020-06-09 23:22:41    阅读次数:104
C#直接插入排序
1 using System; 2 3 namespace ConsoleApp1 4 { 5 class Program 6 { 7 static int[] InsertArray(int[] bornArray) 8 { 9 for (int i = 0; i < bornArray.Leng ...
分类:编程语言   时间:2020-06-08 20:45:52    阅读次数:59
每日linux回顾之top
在linux中内置了很多的性能监控命令,top是其中一个较为全面的工具。先看一下man手册 The top program provides a dynamic real-time view of a running system. It can display system summary inf ...
分类:系统相关   时间:2020-06-08 17:25:01    阅读次数:101
C#多线程
一 线程Thread的使用 (1)不通过委托,直接在线程里实现方法体 namespace ConsoleApplication1{ class Program { static void Main(string[] args) { bool a =false; bool b = false; boo ...
分类:编程语言   时间:2020-06-08 10:51:12    阅读次数:69
9373条   上一页 1 ... 25 26 27 28 29 ... 938 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!