码迷,mamicode.com
首页 >  
搜索关键字:users    ( 8928个结果
EF常用查询语句
//方法一 Linq to Entities var info = from p in entity.Users where p.ID >= 10 orderby p.ID descending select p; foreach (var item in info) { Console.Write ...
分类:其他好文   时间:2017-07-28 14:09:33    阅读次数:469
tomcat 添加用户名和密码
1. 从 tomcat的解压目录下找到 目录下的配置文件:tomcat-users.xml 2.打开后添加如下内容: 3.这样就添加成功了,启动tomcat 4.输入:http://localhost:8080/ 5.弹出提示框 6.输入设置好的 用户名和密码即可 ...
分类:其他好文   时间:2017-07-28 11:42:22    阅读次数:124
MyBatis详解
MyBatis配置文件、操作sql语句(本文全是代码,代码中包含详细注释) ...
分类:其他好文   时间:2017-07-28 01:01:28    阅读次数:243
Apex 使用和学习
ref doc http://o7planning.org/en/10345/oracle-apex-tutorial-for-beginners http://blog.csdn.net/sunansheng/article/details/50408716 C:\Users\Desktop\06 ...
分类:其他好文   时间:2017-07-27 18:35:15    阅读次数:114
Error: Finish can only be called once
Android studio 启动或者新建项目:报错“Error: Finish can only be called once” gradle缓存问题: 默认的额缓存路径在: on windows : C:\Users\YourUserName) 1、退出studio 2、进入缓存路径,找到 C: ...
分类:其他好文   时间:2017-07-27 14:29:17    阅读次数:701
.bat 文件调用python脚本
1.将clearlog.py 脚本放在指定目录 比如 我放在 C:\Users\Administrator\Desktop 上 也就是桌面上 2.创建一个.bat 位后缀名的脚本 3.写入如下脚本 @echo off cd C:\Users\Administrator\Desktop start p ...
分类:编程语言   时间:2017-07-27 13:35:16    阅读次数:280
[中英对照]Introduction to Remote Direct Memory Access (RDMA) | RDMA概述
前言: 什么是RDMA? 简单来说,RDMA就是指不通过操作系统(OS)内核以及TCP/IP协议栈在网络上传输数据,因此延迟(latency)非常低,CPU消耗非常少。 下面给出一篇简单介绍RDMA的文章之中英文对照翻译。 Introduction to Remote Direct Memory A ...
分类:数据库   时间:2017-07-27 11:35:24    阅读次数:342
phpstorm、webstorm配置less编译器
1、 node.js 安装包 https://nodejs.org/en/download/ 1) 安装js解析器node.js。直接下一步就ok了。 2) 将npm压缩包解压,找到里面的lessc.cmd文件,放到c盘下一个没有中文路径的目录下,我们假如是 C:\Users\admin\AppDa ...
分类:Web程序   时间:2017-07-27 09:38:20    阅读次数:1929
selenium实战 二 进入博客园,上传图片并发帖
1 #-*- coding:utf-8 -*- 2 __author__ = "carry" 3 4 from selenium import webdriver 5 import time 6 import SendKeys 7 8 profileDir = r'C:\Users\Administ... ...
分类:Web程序   时间:2017-07-27 00:48:57    阅读次数:212
python自动化之excel
import openpyxl wb=openpyxl.load_workbook(r'C:\Users\Administrator\Desktop\sl.xlsx') type(wb) wb.get_sheet_names() sheet=wb.get_sheet_by_name('o') typ ...
分类:编程语言   时间:2017-07-26 23:41:09    阅读次数:396
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!