beans2.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springfra...
分类:
编程语言 时间:
2015-07-24 20:52:29
阅读次数:
241
配置文件beans2.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.sprin...
分类:
编程语言 时间:
2015-07-24 18:25:19
阅读次数:
142
今天碰到一个WSDL,比较奇怪,它是用Java生成的。 WSDL有两个文件,一个是sfc.wsdl,另一个是sfc.xsd。在命令行执行:wsdl.exe sfc.wsdl报错:Error: Unable to import binding 'SfcServicePortBinding'...
分类:
其他好文 时间:
2015-07-24 10:30:16
阅读次数:
414
以创建字符集为utf8的数据库为例:CREATE DATABASE db_name DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;CREATE DATABASE 的语法:CREATE {DATABASE | SCHEMA} [IF NOT EX...
分类:
数据库 时间:
2015-07-24 08:04:08
阅读次数:
194
百度百科这么解释:把整个数据库装载到一个单独的文本文件中。这个文件包含有所有重建您的数据库所需要的SQL命令。这个命令取得所有的模式(Schema,后面有解释)并且将其转换成DDL语法(CREATE语句,即数据库定义语句),取得所有的数据、并且从这些数据中创建INSERT语句mysql..
分类:
数据库 时间:
2015-07-24 01:36:32
阅读次数:
145
MySQLStudy之--MySQLschema_information数据库information_schema数据库是在mysql的版本5.0之后产生的,一个虚拟数据库,物理上并不存在。information_schema数据库类似与“数据字典”,提供了访问数据库元数据的方式,即数据的数据。比如数据库名或表名,列类型,访问权限(更..
分类:
数据库 时间:
2015-07-24 00:11:14
阅读次数:
142
要统计数据库的连接数,我们通常情况下是统计总数,没有细分到每个IP上。现在要监控每个IP的连接数,实现方式如下:方法一:selectSUBSTRING_INDEX(host,‘:‘,1)asip,count(*)frominformation_schema.processlistgroupbyip;方法二:mysql-uroot-h127.0.0.1-e"showprocesslist\G;..
分类:
数据库 时间:
2015-07-24 00:06:59
阅读次数:
222
beans.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.s...
分类:
其他好文 时间:
2015-07-24 00:00:44
阅读次数:
322
MySQL Study之--MySQL schema_information数据库
information_schema数据库是在mysql的版本5.0之后产生的,一个虚拟数据库,物理上并不存在。
information_schema数据库类似与“数据字典”,提供了访问数据库元数据的方式,即数据的数据。比如数据库名或表名,列类型,访问权限(更加细化的访问方式)。
案例...
分类:
数据库 时间:
2015-07-23 17:49:54
阅读次数:
188
首先用到的开发工具是VS2013,SQLServer Management Studio2012。实体类型: 1 [Table("Student",Schema="dbo")]//数据库表名称 2 //属性 3 #region Properties 4 5 [Column("StudentId",....
分类:
其他好文 时间:
2015-07-23 15:32:28
阅读次数:
116