码迷,mamicode.com
首页 >  
搜索关键字:rbo    ( 624个结果
1.BBS需求分析和创建ORM
from django.contrib.auth.models import AbstractUser class UserInfo(AbstractUser): """ 用户信息表 """ nid = models.AutoField(primary_key=True) phone = model ...
分类:其他好文   时间:2018-06-03 17:29:11    阅读次数:157
Python学习:Mysql(三)索引
1、索引 索引是表的目录,在查找内容之前可以先在目录中查找索引位置,以此快速定位查询数据。对于索引,会保存在额外的文件中。 2、索引种类 普通索引:仅加速查询 唯一索引:加速查询 + 列值唯一(可以有null) 主键索引:加速查询 + 列值唯一 + 表中只有一个(不可以有null) 组合索引:多列值 ...
分类:数据库   时间:2018-05-31 20:38:17    阅读次数:174
更换django自带的下载链接
1 class Case(models.Model): 2 file_type = MyFileField(verbose_name='file_obj', max_length=256, blank=True, null=True) 3 link = models.CharField(verbos ...
分类:其他好文   时间:2018-05-31 19:20:09    阅读次数:152
容器部署与简单应用
Tips:默认Docker的镜像文件都是存储在Hyper-V的默认目录下, 开始 -> Windows 管理工具 -> Hyper-V管理器 -> 设置 -> 虚拟硬盘, 我们可以修改,具体参考 https://www.jianshu.com/p/fd780d0469d4 https://ranch ...
分类:其他好文   时间:2018-05-29 17:17:30    阅读次数:304
mysql网文收录
1、分布式事务 1) 聊聊分布式事务,再说说解决方案 https://www.cnblogs.com/savorboard/p/distributed-system-transaction-consistency.html 2) 分布式系统事务一致性解决方案 http://www.infoq.com ...
分类:数据库   时间:2018-05-28 22:44:00    阅读次数:223
[Selenium+Java] TestNG Priority in Test Cases
Original URL: https://www.guru99.com/test-case-priority-testng.html TestNG Priority in Test Cases estNG is a Testing framework, that covers different ...
分类:编程语言   时间:2018-05-28 11:37:33    阅读次数:183
python之读取Excel 文件
xlrd.open_workbook(filename=None, logfile=<_io.TextIOWrapper name='<stdout>' mode='w' encoding='UTF-8'>, verbosity=0, use_mmap=1, file_contents=None,  ...
分类:编程语言   时间:2018-05-26 13:00:57    阅读次数:276
以太坊客户端Geth命令用法
命令用法 geth [选项] 命令 [命令选项] [参数…] 命令: account 管理账户attach 启动交互式JavaScript环境(连接到节点)bug 上报bug Issuesconsole 启动交互式JavaScript环境copydb 从文件夹创建本地链dump Dump(分析)一个 ...
分类:其他好文   时间:2018-05-25 11:11:36    阅读次数:292
PHP的安装
1、PHP5的安装: 下载: wget -c http://cn2.php.net/distributions/php-5.6.36.tar.gz (php5) wget -c http://cn2.php.net/distributions/php-7.2.5.tar.gz (php7) 解压: ...
分类:Web程序   时间:2018-05-25 01:34:00    阅读次数:1291
telnet命令
详细资料 telnet命令使用方法详解-telnet命令怎么用-win7没有telent怎么办 2017年07月26日 15:37:36 阅读数:1010 2017年07月26日 15:37:36 阅读数:1010 阅读数:1010 什么是Telnet? 对于Telnet的认识,不同的人持有不同的观 ...
分类:Web程序   时间:2018-05-23 20:46:17    阅读次数:246
624条   上一页 1 ... 32 33 34 35 36 ... 63 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!