码迷,mamicode.com
首页 >  
搜索关键字:id 电脑配置    ( 68540个结果
docker无网络环境安装镜像
docker无网络环境安装镜像 1、从其它有网络环境的机器导出镜像 #查看镜像 docker images liyc@liyc-VirtualBox:~ $ docker images REPOSITORY TAG IMAGE ID CREATED SIZE minio/minio latest 6 ...
分类:其他好文   时间:2021-03-03 12:18:43    阅读次数:0
mysql常用
1,将id列放在第一列 alter table cqc_xa.cqc_xa_diff_case modify id int unsigned auto_increment first; 2,增加自增id alter table test.student add column indexxx int( ...
分类:数据库   时间:2021-03-03 12:17:55    阅读次数:0
ResultMap结果集映射
数据库中的字段: 新建一个项目,拷贝之前的,测试实体类字段不一致的情况 public class User { private int id; private String name; private String password; } 测试出现问题 解决方案: +起别名 使用resultMap ...
分类:其他好文   时间:2021-03-03 11:56:22    阅读次数:0
mybatis学习(四、解决属性名和字段不一致)
四、解决属性名和字段名不一致 1.问题 新建一个项目,使数据库与实体类字段名称不一致 public class User { private int id; private String name; private String password;//数据库中为pwd 查询出来初选问题: User{ ...
分类:其他好文   时间:2021-03-02 12:37:44    阅读次数:0
bootstrap绑定数据
支持三种方式初始化表格: 1.html格式数据(即静态数据); 2.JavaScript传递数据; 3.数据属性变量动态获取。 1.静态表格:data-toggle="table" <table data-toggle="table"> <thead> <tr> <th>Item ID</th> < ...
分类:其他好文   时间:2021-03-02 12:21:56    阅读次数:0
python django中使用redis
一、使用redis缓存准测 1. 经常存取,且不会改变的数据可以用缓存来存储,比如首页数据,数据量虽然大,但它不会经常改变;2. 经常使用(这里的经常使用的意思是经常作dml操作),但数据量小,比如说购物车数量的改变,就可以使用缓存; 二、python中使用redis 安装:pip install ...
分类:编程语言   时间:2021-03-02 12:14:34    阅读次数:0
zabbix latest.php SQL注入漏洞(CVE-2016-10134)
Zabbix 2.2.14之前的版本和3.0.4之前的3.0版本 latest.php页面提取cookie中的zbx_sessionid的后16位 246c58ba963457ef http://192.168.49.2:8080/latest.php?output.php=ajax&sid=246 ...
分类:数据库   时间:2021-03-02 12:07:31    阅读次数:0
IEnumerable<sting>串联成一个字符串
$"[Id] NOT IN ('{string.Join("','", data.Details.Select(q => q.Id.ToString()))}')" ...
分类:编程语言   时间:2021-03-02 11:47:41    阅读次数:0
Maven配置
Maven配置 Maven配置阿里云镜像 在settings.xml文件中的mirrors下添加mirror标签 <!-- 阿里云仓库 --> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</na ...
分类:其他好文   时间:2021-03-01 13:46:01    阅读次数:0
查看数据表的信息
查看数据表的信息,只能算是优化用户体验 --用户表 if exists(select * from sysobjects where name = 'bi_user') drop table bi_user create table bi_user ( user_id int not null pr ...
分类:其他好文   时间:2021-03-01 13:44:56    阅读次数:0
68540条   上一页 1 ... 56 57 58 59 60 ... 6854 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!