码迷,mamicode.com
首页 >  
搜索关键字:ror    ( 7126个结果
登录mysql时,报错ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)
原因:未开启mysql服务器 手动开启:windows下启动cmd,在命令行下输入services.msc命令,打开服务程序,找到mysql程序,手动启动 命令行开启:net start mysql 服务名称被修改过,导致命令行无法开启 ...
分类:数据库   时间:2021-02-20 11:56:03    阅读次数:0
flask日志配置
flask日志设置 在App/utils/ 新建loggings.py文件 from flask import request import logging import logging.handlers import os class RequestFormatter(logging.Format ...
分类:其他好文   时间:2021-02-19 12:57:16    阅读次数:0
域名那些事儿
<!doctype html><html><head><meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'><title>域名讲解</title><link href='htt ...
分类:其他好文   时间:2021-02-18 13:11:52    阅读次数:0
MySQL:安装与配置
一、MySQL安装 0、下载社区版安装包 官网下载地址:https://dev.mysql.com/downloads/installer/ 1、进入安装页面,这里不选择默认安装的所有工具,仅选择Server only。 2、如果没有VC++环境就点击execute安装,已安装就继续下一步。 3、安 ...
分类:数据库   时间:2021-02-17 15:08:41    阅读次数:0
gem install rjb (1.6.4) error
An error occurred while installing rjb (1.6.4), and Bundler cannot continue. Make sure that `gem install rjb -v '1.6.4' --source 'https://gems.ruby-ch ...
分类:其他好文   时间:2021-02-10 13:00:46    阅读次数:0
C#程序执行Python脚本
方法介绍: 通过调用“Python.exe”程序,执行脚本文件。所以,本方式要求电脑上已经安装了Python,拥有程序Python.exe程序。 现在,有如下py脚本:Add.py import sys def Add(a,b): return a+b if __name__=='__main__' ...
分类:编程语言   时间:2021-02-08 12:22:54    阅读次数:0
indexedDB基本使用demo
<html> <head> <script src="jquery-3.5.1.js"></script> </head> <body> <script> createOrOpenDb("teamtalk"); //新建或打开已有数据库 function createOrOpenDb(dbName) ...
分类:数据库   时间:2021-02-08 12:14:15    阅读次数:0
数据结构:2.7 队列的顺序存储和链式存储
队列的顺序存储 //顺环队列 头出尾进 #define MaxSize 100 struct QNode { ElementType Data[MaxSize]; int rear; //尾 int front; //头 }; typedef struct QNode *Queue; //入队列 v ...
分类:其他好文   时间:2021-02-06 11:58:48    阅读次数:0
jenkins ssh连接超时 SSH: Disconnecting configuration
SSH: Disconnecting configuration [192.168.2.68] ... ERROR: Exception when publishing, exception message [Exec timed out or was interrupted after 120,0 ...
分类:其他好文   时间:2021-02-05 10:37:04    阅读次数:0
js节日
前端去处理节日 逻辑 要处理哪一年的。 哪一年,每月的天数。 判断,放入数组。 let array = []; let yearNow = new Date().getFullYear(); for(let i=0;i<12;i++){ //月份加一 let date = new Date(year ...
分类:Web程序   时间:2021-02-04 12:04:13    阅读次数:0
7126条   上一页 1 ... 9 10 11 12 13 ... 713 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!