摘要:一、先介绍一下什么是存储过程 存储过程是利用sql server所提供的tranact-sql语言所编写的程序。tranact-sql语言是sql server提供专为设计数据库应用程序的语言,它是应用程序和sql server数据库间的主要程序式设计界面。它好比oracle数据库系统中的pro-sql和informix的数据库系统能够中的informix-4gl语言一样。这类语言主要提供以下功能......
摘要:一种简便实效的配置文件读写方法
声明:我的“文章”只适宜初学者参考。我对概念理解模糊,参考者只参考思路则可。
(怕挨骂,声明在前)
主要做法:
第一步,将配置信息做一个简单的类。
要点:因为要用到序列化,而且是用xmlserializer来序列化,所以要存到文件的变量信息都要声明为public,要序列化的类用<serializable()>......
JBoss AOP - IDE 学习笔记
同时也是jboss aop - reference 的chapter 12
12.1. the aop ide 【程序编程相关:
[转]怎样学习C语言】
chapter 12. jboss aop ide 【推荐阅读:
[转]学C++ 的50条建议 】
12.2. installing 【扩展信息:
crond实现linux定时运行程序 -】
jboss aop comes with an eclipse plugin that helps you define interceptors to an eclipse project via a gui, and to run the appication from within eclipse. this is a new project, and expect the feature set to grow quickly!
you install the jboss aop ide in the same way as any other eclipse plugin.
...
下一页 摘要:17种正则表达式
march 25,2004
"^\d+$" //非负整数(正整数 + 0)
"^[0-9]*[1-9][0-9]*$" //正整数
"^((-\d+)|(0+))$" //非正整数(负整数 + 0)
"^-[0-9]*[1-9][0-9]*$" //负整数
"^-?\d......