简介 SQLite,是一款轻型的数据库,它包含在一个相对小的C库,设计目标是嵌入式的,占用资源非常的低,嵌入式系统可能几百k就够, 处理速度比mysql,postgresql都快,是一个磁盘上的文件,比如linux系统某个某录下有个test.db 功能特性 1. ACID事务 [1] 2. 零配置 ...
分类:
数据库 时间:
2020-02-19 16:56:44
阅读次数:
66
javaScript部分 这里contentType: "application/json还未设置 1. function testRequestBody() { var book = new Object(); var id = 1; var name = "Spring MVC企业应用实践"; ...
分类:
移动开发 时间:
2020-02-18 18:37:12
阅读次数:
85
from datetime import date, datetime import xlrd # 单元格类型: 0. empty(空的),1 string(text), 2 number, 3 date, 4 boolean, 5 error, 6 blank(空白表格) book = xlrd. ...
分类:
编程语言 时间:
2020-02-17 20:05:22
阅读次数:
97
pip install xlrd #j导入这个库 import xlrd book = xlrd.open_workbook("C:\\Users\\del\\Desktop\\Book1.xlsx") sheet_name = book.sheet_names()[0] #获取指定索引的sheet ...
分类:
编程语言 时间:
2020-02-17 19:56:23
阅读次数:
77
pip install xlrd import xlrd book = xlrd.open_workbook("C:\\Users\\del\\Desktop\\Book2.xls") sheet_name = book.sheet_names()[0] #获取指定索引的sheet的名字 print ...
分类:
编程语言 时间:
2020-02-17 19:37:34
阅读次数:
97
2020-02-17 _author_ = "chen"product_list = [ ('iphone', 5800), ('mac book', 9800), ('bike', 800), ('watch', 10600), ('coffee', 31), ('python', 120),]s ...
分类:
其他好文 时间:
2020-02-17 17:56:43
阅读次数:
83
/** * React v15.6.0 */ (function (f) { if (typeof exports "object" && typeof module !== "undefined") { module.exports = f() } else if (typeof define " ...
分类:
Web程序 时间:
2020-02-17 17:49:02
阅读次数:
82
?XX, YY = np.meshgrid(xx, yy) meshgrid()函数用两个坐标轴上的点在平面上画网格 https://www.cnblogs.com/shanlizi/p/9127878.html ?ax.plot_surface(XX, YY, ZZ, rstride = 8, c ...
分类:
编程语言 时间:
2020-02-17 01:02:23
阅读次数:
82
今天完善项目的数据库操作: 定义三个数据库,分别表示收入、支出和添加类别。 package net.hnjdzy.tinyaccount.db; import android.content.Context; import android.database.Cursor; import androi ...
分类:
其他好文 时间:
2020-02-16 23:25:09
阅读次数:
126
一、React框架概述 官网:https://reactjs.org/ 最新版V16.10 中文网:https://zh-hans.reactjs.org/ 中文社区网:https://react-1251415695.cos-website.ap-chengdu.myqcloud.com/ 由Fa ...
分类:
其他好文 时间:
2020-02-15 23:21:08
阅读次数:
102