方法: # django官网提供的一个orm语法 from django.db.models.functions import TruncMonth -官方提供 from django.db.models.functions import TruncMonth Sales.objects .anno ...
分类:
其他好文 时间:
2020-06-12 00:59:52
阅读次数:
60
问题背景: oracle表空间不足报错是比较常见的故障,尤其是没有对剩余表空间做定期巡检的系统; 报错代码如下: oracle表空间不足错误代码:ORA-01653: unable to extend table ; 解决方式: 1、查看表空间使用率: 1 set linesize 220; 2 s ...
分类:
数据库 时间:
2020-06-11 21:24:36
阅读次数:
61
public static <T> T requireNonNull(T obj) { if (obj == null) throw new NullPointerException(); return obj; } ...
分类:
其他好文 时间:
2020-06-10 19:33:36
阅读次数:
49
原文地址: https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Object/is 用法 Object.is(value1, value2); 返回一个boolean 说明 Object.i ...
分类:
其他好文 时间:
2020-06-10 14:43:34
阅读次数:
60
1.4. Dependencies 1.4.1. Dependency Injection Dependency injection (DI) is a process whereby objects define their dependencies (that is, the other obj ...
分类:
编程语言 时间:
2020-06-09 16:33:25
阅读次数:
54
def ab_pl(request): # 先给Book插入一万条数据 # for i in range(10000): # models.Book.objects.create(title='第%s本书'%i) # # 再将所有的数据查询并展示到前端页面 book_queryset = model ...
分类:
其他好文 时间:
2020-06-09 00:01:59
阅读次数:
95
ZIP压缩与解压类库分享 简介 适用于win32/64以及win-ce平台,支持Unicode。 版权说明 ZIP UTILS by Lucian Wischik, June 2004 - July 2005 解压调用示例 // For unzipping, add "unzip.cpp" to y ...
分类:
其他好文 时间:
2020-06-07 21:29:09
阅读次数:
103
Domain events: design and implementation https://martinfowler.com/eaaDev/DomainEvent.html Implement value objects ...
分类:
其他好文 时间:
2020-06-05 15:08:52
阅读次数:
60
1.Objects类 1.0 object.equals() 改写equals方法 public class Person/*extends Object*/ { private int age; private String name; public Person() { } public Per ...
分类:
编程语言 时间:
2020-06-05 12:52:50
阅读次数:
69
单表操作 # django自带的sqlite3数据库对日期格式不是很敏感 处理的时候容易出错 # 增 # res = models.User.objects.create(name='jason',age=18,register_time='2002-1-21') # print(res) # im ...
分类:
其他好文 时间:
2020-06-04 13:52:49
阅读次数:
48