- 浏览: 121332 次
- 性别:
- 来自: 郑州
最新评论
-
lgl_0422:
哥来瞧瞧你
mongodb 请求的服务提供程序无法加载或初始化( The requested service provider could not be loaded o) -
edmond207:
好,先参考参考,呵呵,感谢分享
proxool -
daichangfu:
说的有点模糊...
ibatis缓存 -
fxbird:
2我不知道,但3是默认就使用缓存的,如果查询条件完全一样的话, ...
ibatis缓存 -
shaka:
看来lz对ibatis缓存理解还比较浅,搞不太清楚的技术直接拿 ...
ibatis缓存
文章列表
分类、品牌、商品这上面我已提起,就不说了说说属性。
你的意思是如:电视有尺寸、分辨率属性,冷柜类可能有款式、容积的属性,也就是说不同的商品有不同的属性这样是吧?首先要分析一点,同分类的属性值应该是相同, ...
mysql中如何设置默认时间为当前时间?
把日期类型 选择成timestamp 允许空 就可以了
CREATE TABLE `dtal` (
`uname` varchar(50) NOT NULL,
`udate` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
而如果要在navicat下操作的话,将字段设置为timestamp,然后默认值写上CURRENT_TIMESTAMP即可
选 times ...
mysql: select * from tbl_school where school_name like concat('%',#name#,'%')
oracle: select * from tbl_school where school_name like '%'||#name#||'%'
sql server:select * from tbl_school where school_name like '%'+#name#+'%'
[code='java']
style="ime-mode:disabled" onKeyPress="if ((event.keyCode <48 || event.keyCode>57)) event.returnValue=false"
declare hys cursor
for select * from customers
open hys
fetch next from hys
close hys
public static boolean checkImageTypeVailable(File file) {
if (file == null) {
return false;
}
try {
byte[] imgContent = FileUtils.readFileToByteArray(file);
int len = imgContent.length;
System.out.pr ...
- 2009-10-12 22:23
- 浏览 1122
- 评论(0)
declare @name varchar(20),@sid varchar(30)
declare @y varchar(8),@m varchar(8),@d varchar(8)
declare cur cursor
for select 姓名,身份证号,substring(身份证号,7,2),substring(身份证号,9,2),substring(身份证号,11,2) from Sheet1$
open cur
fetch next from cur into @name,@sid,@y,@m,@d
while @@fetch_status = 0
begin
...
- 2009-09-23 14:14
- 浏览 1632
- 评论(0)
declare @name varchar(20),@sid varchar(30)
declare cur cursor
for select 姓名,F11 from Sheet1$
open cur
fetch next from cur into @name,@sid
while @@fetch_status = 0
begin
if @sid is not null
begin
print 'update [192.168.123.201].htbz.dbo.t_Worker set wk_sid = '+@sid+' where wk ...
- 2009-09-22 23:42
- 浏览 1042
- 评论(0)
连接数据库,JDBC-ODBC数据源,及java调用存储过程
需用到的包java.sql.*;
<一>java连接
1)加载驱动:Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");//java
Class.forName("sun.jdbc.odbc.jdbcodbcDriver");//jdbc-odbc数据源
2)建立连接:Connection conn=DriverManager.getConnection("jdbc:microsoft:sqlser ...
- 2009-09-18 15:05
- 浏览 2346
- 评论(0)
跟着高手做项目,他的基本业务都写成了存储过程。偶跟着学,
入门学习SQL
select substring(convert(varchar,birthdate),5,1) as mon ,* from employees
where substring(convert(varchar,birthdate),5,1)='8'
insert into imp2.dbo.student(id,name) select userid,username from imp1.dbo.users
select * from [pc-200907281203].imp2.dbo.student
pc-200907281203 是我的数据库的名字,
实现不同的数据库之间的相互的导数据方便多了
- 2009-09-15 14:20
- 浏览 954
- 评论(0)
USE pubs
GO
SELECT CHARINDEX('wonderful', notes)
FROM titles
WHERE title_id = 'TC3218'
GO
///wonderful is text infomation
/// notes is colmun information
///return worderful is position
- 2009-08-25 09:05
- 浏览 915
- 评论(0)
一个java处理JSON格式数据的通用类
进入需要在项目中用java处理json格式的数据,因此封装了一个class,现将这个class共享出来和大家分享
/**
* Copyright (c) linkwise 2007-2009 corporation.
* All rights reserved
*/
package com.linghui.common.util;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.It ...
- 2009-08-24 23:25
- 浏览 1025
- 评论(0)
我们平时查询的时候在消息栏里不是会有
(1行受影响)之类的文字吗
加上set nocount on后就不会有了,这就避免了这些没有的信息了
21回答者: mozily - 助理 二级
- 2009-08-24 21:42
- 浏览 886
- 评论(0)