1 import pymysql 2 import pandas 3 db=pymysql.connect(host='localhost',port=3306,user='root',database='lihao',password='lh19990317') 4 #cursor=db.curs ...
分类:
数据库 时间:
2020-06-15 12:14:50
阅读次数:
58
UIViewController 的 生命周期 #pragma mark life circle // 非storyBoard(xib或非xib)都走这个方法 - (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBun ...
分类:
其他好文 时间:
2020-06-15 12:12:01
阅读次数:
64
网上摘录常用css片段 垂直水平居中 /*绝对定位 + 未知宽高 + translate*/ position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); /*flex 轻松搞定水平垂直居中(未知宽高*/ dis ...
分类:
Web程序 时间:
2020-06-14 23:22:57
阅读次数:
85
Accessing data using cursors ArcGIS 10.7 Locate topic A cursor is a data access object that can be used to either iterate over the set of rows in a ta... ...
分类:
数据库 时间:
2020-06-14 19:00:06
阅读次数:
82
从语言编译器源码入手,编译原理该这么学 视频选集 2/8 P101 P202 P303 P404 P505 P606 P707 P808 标志符 & 关键字: Java 是先一起识别出来,再挑出保留关键字; Python 不区分,在后面语法处理阶段再区分 Java:同时使用自顶向下(总体)和自底向上 ...
分类:
编程语言 时间:
2020-06-14 15:16:47
阅读次数:
91
团队:专?团队 项目:music sharing 音乐共享平台 Alpha阶段项目复审 小组 项目 优点 缺点 最终排名 歪瑞古德小队 海岛漂流 1.分工明确,开发过程规范 2.功能完善,实现设计 1.实用性有待考虑 1 六神花露水 玩个球 1.简约风格更受当代年轻人喜欢2.运行流畅,资源加载快3. ...
分类:
其他好文 时间:
2020-06-14 14:37:37
阅读次数:
69
在linux内核中list的使用很频繁,使用管理对象,下面来详细说明其用法。 1链表结构定义 首先看链表的定义,位于:include\linux\types.h 1 struct list_head { 2 struct list_head *next, *prev; 3 }; 一般将该数据结构嵌入 ...
分类:
系统相关 时间:
2020-06-13 13:12:10
阅读次数:
62
1、下拉框,效果如下图所示: 代码: <style> .selectBox { width: 90px; margin: 50px; } .select { width: 90px; background-color: #17a6b5; height: 40px; cursor: pointer; ...
分类:
Web程序 时间:
2020-06-09 18:31:29
阅读次数:
87
跨域问题(CORS) CORS全称Cross-Origin Resource Sharing,意为跨域资源共享。当一个资源去访问另一个不同域名或者同域名不同端口的资源时,就会发出跨域请求。如果此时另一个资源不允许其进行跨域资源访问,那么访问的那个资源就会遇到跨域问题。 解决问题 覆盖默认的CorsF ...
分类:
编程语言 时间:
2020-06-08 23:32:06
阅读次数:
73