大约有 5,000 项符合查询结果(耗时:0.0222秒) [XML]

https://bbs.tsingfun.com/thread-267-1-1.html 

ORACLE 常用日期函数 - ORACLE - 清泛IT论坛,思想、深度

ADD_MONTHS函数在输入日期上加上指定的几个月返回一个新的日期。如果给出一负数,返回值日期之前几个月日期。 select add_months(to_date('20150201','yyyymmdd'), -1) from dual 结果:2015/1/1 相应的,加减天数add_days函数是不存在的,直接...
https://bbs.tsingfun.com/thread-32-1-1.html 

nvarchar和varchar相互转换、联合查询 - ORACLE - 清泛IT论坛,思想、深度

...anslate(c_xxx USING CHAR_CS) from B 注意:translate函数括号中没逗号。 1、varchar:               可变长度的  非Unicode  数据,最长为8,000个字符。    2、nvarchar:    &n...
https://bbs.tsingfun.com/thread-811-1-1.html 

oracle10g 网址收藏 - ORACLE - 清泛IT论坛,思想、深度

载OTN上的这些软件,你需要一个OTN免费帐号,不过如果通过迅雷进行下载,就不用登陆OTN了: Oracle Database 10g Release 2 (10.2.0.1.0) Enterprise/Standard Edition for Microsoft Windows (32-bit) http://download.oracle.com/otn/nt/oracle10g/10201/10201_database_win32.z...
https://bbs.tsingfun.com/thread-314-1-1.html 

org.apache.tomcat.util.modeler.ManagedBean tomcat启动不了 - JAVA - 清泛IT论坛,思想、深度

java版本太低了,下载新版本java: http://www.oracle.com/technetwork/java/javase/downloads/jdk6-jsp-136632.html
https://bbs.tsingfun.com/thread-Array-1-1.html 

C#科学计数法转换decimal出错 - .NET(C#) - 清泛IT论坛,思想、深度

decimal scientific = decimal.Parse("2.1021E-05") 执行发生异常:“未经处理的异常:  System.FormatException: 输入字符串的格式不正确。” 解决方法: decimal  scientific = decimal.Parse("2.1021E-05", System.Globalization.NumberS...
https://bbs.tsingfun.com/thread-863-1-1.html 

此诊断出现在编译器生成的函数“CGdiObject &CGdiObject::operator =(c...

出现此类问题是对象赋值导致,因为没重载“=”赋值操作符。 由于不会提示具体错误行,因此需要仔细查看对象直接赋值的地方。 改为指针赋值就没问题。
https://bbs.tsingfun.com/thread-618-1-1.html 

C#泛型(List)中基类和子类 怎么转换? - .NET(C#) - 清泛IT论坛,思想、深度

...lass> baseList); 需求:把子类列表传入函数Foo,Foo支持所子类列表。 方法一: Foo(childList.Select(p => p as BaseClass).ToList()) 上述 Select 转换是双向的,基类转子类也没问题。 方法二: List<BaseClass> baseList = new List<Bas...
https://bbs.tsingfun.com/thread-33-1-1.html 

常用Sql - MySql - 清泛IT论坛,思想、深度

本帖最后由 zqp2013 于 2015-3-17 22:06 编辑 mysql:drop table if exists tablename; 不能写成 drop table tablename if exists tablename; mysql:建立索引Sql CREATE TABLE tablename (   `ID`                 &nbs...
https://bbs.tsingfun.com/thread-38-1-1.html 

MySql安装配置 - MySql - 清泛IT论坛,思想、深度

1.下载服务器端,解压 2.安装Mysql服务: 进入bin目录,mysqld.exe --install (指定安装的MySql服务名)。 (卸载 net stop servicename;             mysqld.exe --remove servicename) 3.进入MySql命令模式: mysql.exe(...