<?xml version="1.0" encoding="UTF-8"?><project basedir="." default="usage" name="TestPrjAndBuild"> <!-- 定义目录变量 --> <property name="project-name" value="TestPrjAndBuild" /> <!-- ====此处需要修改====.jar文件名 --&g Read More
posted @ 2011-04-01 20:04 庚武 Views(331) Comments(0) Diggs(0)
AOP concepts Let us begin by defining some central AOP concepts and terminology. These terms are not Spring-specific... unfortunately, AOP terminology Read More
posted @ 2011-04-01 14:52 庚武 Views(344) Comments(0) Diggs(0)
Allows explicit values to be inserted into the identity column of a table.Syntax:SET IDENTITY_INSERT [ database_name . [ schema_name ] . ] table { ON | OFF }e.g.:USE AdventureWorks;GO-- Create tool table.CREATE TABLE dbo.Tool( ID INT IDENTITY NOT NULL PRIMARY KEY, Name VARCHAR(40) NOT NULL)GO-- Inse Read More
posted @ 2011-04-01 10:41 庚武 Views(512) Comments(0) Diggs(0)