1、FTP返回码列表(哪里都能找到的):120 Service ready in NNN minutes.服务在NNN时间内可用-----------------------------------125 Data connection already open; transfer starting...
分类:
其他好文 时间:
2015-04-17 10:57:09
阅读次数:
164
看了廖老师的教程实现了这个模块,按照自己的思路实现了一个,代码附下。需要说名的几点:1. dbcontext继承自threading.local,确保每个线程中都有独立的一个dbcontext对象,保证个用户数据独立。2. connection对象是对dbcontext对象的一个封装,实现了getc...
分类:
数据库 时间:
2015-04-16 19:19:35
阅读次数:
336
问题描述This English game is a simple English words connection game.
The rules are as follows: there are N English words in a dictionary, and every word has its own weight v. There is a weight if the corre...
分类:
其他好文 时间:
2015-04-16 14:24:45
阅读次数:
185
1、错误描述
[ERROR:]2015-04-14 08:47:48,688 [异常拦截]
org.hibernate.exception.GenericJDBCException: Could not open connection
at org.hibernate.exception.internal.StandardSQLExceptionConverter.convert(Stand...
分类:
数据库 时间:
2015-04-15 23:23:00
阅读次数:
203
import java.sql.Connection;import java.sql.DriverManager;public class DbUtil {private String dbUrl="jdbc:mysql://localhost:3306/db_book";private Strin...
分类:
数据库 时间:
2015-04-15 22:41:40
阅读次数:
204
server1上面装了oracle client ,也装了plsql,但是登录了以后,不显示database 和connect as手工输入正确的用户名和database后报错如下于是就取消登录 ,直接进入plsql界面Tools-Connection查看oracle home和OCI librar...
分类:
数据库 时间:
2015-04-15 16:14:57
阅读次数:
213
Solution 1:点击Visual Studio工具栏中的SSIS,出先下拉菜单,选择Variables,在出现的Variables 窗体中修改想要修改的变量的ValueSolution 2:在Control Flow 页面空白处 右击,在弹出的菜单中选择Variables,在出现的Variab...
分类:
其他好文 时间:
2015-04-15 11:19:18
阅读次数:
127
helloword程序,所有java学习人员人生第一个程序,哎妈,基础太差,出错 1 public class Helloword{ 2 3 public Helloword() { 4 public static void main (String[] args) { 5...
分类:
编程语言 时间:
2015-04-15 10:58:22
阅读次数:
433
网上给出了很多中解决办法,主要有一下几种:1 关闭Windows防火墙;2 关闭ipv6或设置ipv4偏好,具体为:在“设备管理器”,显示隐藏设备,禁用“Teredo”开头的一个网络设备;在eclipse.ini文件增加(最后一行的参数)openFile-vmargs-Djava.net.prefe...
分类:
移动开发 时间:
2015-04-15 00:43:56
阅读次数:
186
1. 放弃本地改动的所有改动,恢复到最近一次的commit起点处:git reset --hard说明一下:比如罪行一次的commit为c1, 你在次基础上进行了一系列CRUD操作之后,不过想想将项目搞乱了,因此需要回到今天的起点。可以按照如下操作进行:git add . //将当前文件加入到gi....
分类:
其他好文 时间:
2015-04-14 22:49:26
阅读次数:
150