使用Datagridview绑定Access数据库,对于数字类型的数据输入小数后报以下错误:根据错误判断应该是自动检测该栏位应该输入int32类型的数值。我在数据库中定义了保留4位小数,为什么还被转成整型呢?仔细检查,原来Access中的数据类型是需要进一步定义的,选了数字后还要选择是字段大小,以确...
分类:
其他好文 时间:
2014-05-01 08:36:21
阅读次数:
570
补充:做下面的例子前,需要先安装 rabbitmq-server-3.3.0.exe 服务器。资源我已经上传
安装以后启动服务器就可以了
下面文章出自:http://blog.csdn.net/mydreamongo/article/details/8272025
请保护正版:
abbitMQ是一个在AMQP基础上完整的,可服用的企业消息系统。他...
分类:
编程语言 时间:
2014-04-29 13:38:21
阅读次数:
531
- (void)drawRect:(CGRect)rect
{
[super drawRect:rect];
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(ctx, .3, .3, .3, .1);
CGContextFillRect(ctx, self.boun...
分类:
其他好文 时间:
2014-04-29 13:33:22
阅读次数:
284
Problem:
You are trying to setup a mirroring on a Database called xxxDB(SQL server 2012).
You are getting this error while trying to setup mirroring.
“Neither the partner nor the witness server ins...
分类:
数据库 时间:
2014-04-29 13:33:20
阅读次数:
444
Problem Description
In the Wide Web World, Which web server was popular in web site? Apache, nginx, lighttpd? Baidu.com use Apache, and many web sites like 163.com use nginx. Why? Its configuration i...
分类:
其他好文 时间:
2014-04-29 13:24:20
阅读次数:
355
jdbc驱动到官网下载,放在jdk的相关目录下面,或者jar文件加入到工程下面
package test_mysql;
import java.sql.*;
import java.util.Set;
public class testjdbc {
public static Connection getConnection() throws ClassNotFoundException, S...
分类:
数据库 时间:
2014-04-29 13:22:20
阅读次数:
428
SQL Server 2005 安装要求
本主题介绍了安装 SQL Server 205 的硬件和软件要求,以及查看安装文档的说明。
硬件和软件要求(32 位和 64 位)
访问 SQL Server 2005 联机丛书以获取安装信息
硬件和软件要求(32 位和 64 位)
以下部分列出了运行 Microsoft SQL Server 2005 的最低硬件和软...
分类:
数据库 时间:
2014-04-29 13:18:21
阅读次数:
373
我们都知道在Web开发中,都需要服务器,比如Java Web开发的Tomcat,WebLogic,WebSphere,现在来看利
用Tornado Web Server框架如何写一个简易的Python服务器。
一般来说只需要实现get和post方法就可以了。以上次使用redis数据库的例子说明,数据库插入代码如下:
import redis
import datetime
clas...
分类:
其他好文 时间:
2014-04-29 13:17:20
阅读次数:
397
建立elements目录
mkdir -p elements/lamp/install.d/
vim 70-lamp
#!/bin/bash
set -eux
install-packages wordpress mariadb-server httpd memcached
生成一个带wordpress的镜像
export ELEMENTS_PATH=...
分类:
其他好文 时间:
2014-04-29 13:14:21
阅读次数:
475
需求:后台(指管理员后台)上传一个html模板到文件服务器上,前台(商家操作的平台)读取到模板,并填充数据,生成新的vm页面到webapp/WEB-INF/view目录下,用于预览、保存、打印。
最开始的代码:
@Test
public void test() throws Exception{
String templateUrl = baseServic...
分类:
Web程序 时间:
2014-04-29 13:11:21
阅读次数:
465