首先是APP界面 上交后数据库显示为 然后是源码 MainActivity.java package com.example.temp; import android.Manifest; import android.content.ContentValues; import android.con ...
分类:
移动开发 时间:
2021-02-26 12:57:07
阅读次数:
0
简介 在某些场景下,我们需要在一瞬间插入大量数据的情况下,我们要使用一些性能比较好的方式来插入数据,这样才能保证接口的时间。下面测试的数据是1.6W条数据的时间。 sqlalchemy批量插入数据 方式一: @staticmethod def save_data(data, pg_con=None) ...
分类:
数据库 时间:
2021-02-23 14:19:41
阅读次数:
0
61~70关61关condensecondense [con·dense || k?n'dens] v. 使浓缩, 缩短, 摘要; 浓缩, 凝结dense [dens] adj. 密集的; 浓厚的(a) very heavy in relation to each unit of volume 密度 ...
分类:
其他好文 时间:
2021-02-19 13:30:48
阅读次数:
0
/** * 方法一:使用indexOf和subString方法,循环判断并截取 */ public static void getStrCount1(String str, String con) { int count = 0; while (str.indexOf(con) >= 0) { // ...
分类:
编程语言 时间:
2021-02-17 14:46:16
阅读次数:
0
constexpr 是什么? 关键字 constexpr (constant expression) 是在 C11 中引入的,并且在 C14 中进行了优化。 constexpr 和 const 一样可以用来修饰变量:试图修改 constexpr 变量时,编译器将会报错。 不同于 const, con ...
分类:
其他好文 时间:
2021-02-09 12:40:58
阅读次数:
0
Spring常用注解 本文枚举一些常用的SpringBoot开发注解,希望能帮助读者在SpringBoot开发中正确地使用注解。 @Spring Application 主程序注解,spring框架的main函数自带注解。一般不需要开发人员操作,Spring Initializer会写好。 @Con ...
分类:
编程语言 时间:
2021-02-06 12:01:01
阅读次数:
0
physical standby errors ORA-00600 ORA-10567 ORA-10564 ORA-01110 ORA-10561DECEMBER 26, 2016 ARCSDEGEOLEAVE A COMMENTThe following errors were thrown wh ...
分类:
其他好文 时间:
2021-02-04 11:52:42
阅读次数:
0
Docker 入门到精通 123456789101112131415161718192021222324 """1)docker就是Linux上及其轻量的虚拟机2)虚拟机是存在宿主系统中,通过镜像给宿主系统拓展子系统的(一个镜像理论上可以做n个子系统)3)两个特别重要的概念 image:镜像 con ...
分类:
其他好文 时间:
2021-01-25 10:59:26
阅读次数:
0
一、linux CPU大小 cat /proc/cpuinfo |grep "model name" && cat /proc/cpuinfo |grep "physical id" 说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息。但是对于双核的cpu,在cpuinfo ...
分类:
系统相关 时间:
2021-01-25 10:49:16
阅读次数:
0
深度优先搜索的代码: public class DepthFirstSearch { private boolean[] marked; // marked[v] = is there an s-v path? private int count; // number of vertices con ...
分类:
其他好文 时间:
2021-01-21 10:29:02
阅读次数:
0