摘要: vb shell:Private Sub AddBarcodeImages(ByVal DTab As DataTable) If Not DTab Is Nothing Then DTab.Columns.Add("BCIMAGE", Type.GetType("System.Byte[]")) Dim r As DataRow For Each r In DTab.Rows Try Dim BatchNo As String = CStr(r.... 阅读全文
posted @ 2013-11-06 17:16 vinsonLu 阅读(695) 评论(0) 推荐(0) 编辑
摘要: ORACLE常用数值函数、转换函数、字符串函数介绍。数值函数: abs(m) m的绝对值 mod(m,n) m被n除后的余数 power(m,n) m的n次方 round(m[,n]) m四舍五入至小数点后n位的值(n缺省为0)trunc(m[,n]) m截断n位小数位的值(n缺省为0)-------------------------------------------------------------------------------- 字符函数: initcap(st) 返回st将每个单词的首字母大写,所有其他字母小写 lower(st) 返回st将每个单词的字母全部小写 upper 阅读全文
posted @ 2013-11-06 15:16 vinsonLu 阅读(391) 评论(0) 推荐(0) 编辑