- 浏览: 468974 次
最新评论
-
datawarehouse:
来学习了。
什么是informatic? -
nange223:
感谢分享,学习了
一些数据库监控,优化,管理工具 -
pianxibin:
ertrth thr dj dyj
一些数据库监控,优化,管理工具 -
gekky6:
多谢分享,学习下
一些数据库监控,优化,管理工具 -
lqlein:
好好学习学习
一些数据库监控,优化,管理工具
文章列表
ServiceConfig.ini
文件内容:
[General]
StationLine=DL1
StationGroup=EMKAU
StationId=EMKAU11
Section=Emilie_Connection
Printer=FinePrint
CultureInfo=zh-TW
[Emilie_Connection]
srvAddress = tcp://172.1.5.2:2103/RoutingObject.Routing
主文件读取.ini文件内容[ DllImport ( "kernel32" ) ]
private static exter ...
(1)returning A into B
update work_order wo
set wo.start_qty = nvl(wo.start_qty, 0) + 1
where wo.order_type = 'ATO'
and wo.exception_flag = 0
and wo.order_number = p_work_order
returning wo.start_qty into v_start_qty;
returning A into B:
A is t ...
sql 中 sql%rowcount 判断执行SQL受影响的行数
例子:
update work_order
set order_state = '1'
where line_id = p_line_id
and order_state = '0'
and order_type = 'DPY'
and ORDER_PRIORITY = (select min(ORDER_PRIORITY)
from work_order
...
自定义程序的版本号
在应用程序里:
private void Form1_Load(object sender, System.EventArgs e)
{
this.Text+=" "+System.Windows.Forms.Application.ProductVersion;
}
在程序目录下文件AssemblyInfo.cs
里面修改
[assembly: AssemblyVersion("1.0.2")]
里面的版本号
发布程序(安装给客户的东西):
在运行NET程序以发布模式(Release),将程序代码文件Release烤给客 ...
static void Main()
{
Process instance = RunningInstance();
if (instance == null)
{
Application.Run(new Form1());
}
}
#region RunningInstance
private static Process RunningInstance()
{
Process current = Process.GetCurrentProcess();
Process[] processes = Process.GetProcessesBy ...
//--------------------Check the IMEI's format which Must be 15 figure----------------
Regex reg=new Regex(@"^\d{15}$",RegexOptions.None);
if(!reg.IsMatch(this.textBoxIMEI.Text))
{
labelStatus.Text="IMEI 格式有誤!";
labelStatus.ForeColor=Color.Red;
return;
}
1、创建 Statement 对象
建立了到特定数据库的连接之后,就可用该连接发送 SQL 语句。Statement 对象用 Connection 的方法 createStatement 创建,如下列代码段中所示:
Connection con = DriverManager.getConnection(url, "sunny", "");
Statement stmt = con.createStatement();
为了执行 Statement 对象,被发送到数据库的 SQL 语句将被作为参数提供给 Statement 的方法: ...
递归调用,10进制转mode= (2-34)进制
char[] bases = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
public string MyConvert(int value,int mode)
{
if ( ...
第一种:
很常见一个字符去判断是否為數字。
第二種:
用正則表邊式
using System.Text.RegularExpressions;
Regex reg=new Regex(@"^\d+(\.\d+)?$",RegexOptions.None);
// Match the double data
if(!reg.IsMatch(this.txtRefWeight.Text) || !reg.IsMatch(this.txtWeiRange.Text))
{
labelStatus.Text="重量格式錯誤!";
label ...
得到当前目录下的所有文件名
- 博客分类:
- net
others:
Dim Dtb As New DataTable
Dim myDataRow As DataRow
Dim myDataColumn As New DataColumn
myDataColumn.DataType = System.Type.GetType("System.String")
myDataColumn.ColumnName = ...
- 2008-04-01 16:57
- 浏览 1429
- 评论(0)
Oracle->convert to 34进制
- 博客分类:
- sql
create or replace function convert_decimal_to_base34(p_decimal_num in integer)
return varchar2 is
v_Result_str varchar2(7);
v_replace_str varchar2(1);
v_baseIndex int := 6;
v_remainder int := 0;
v_quotient int := p_decimal_num;
begin
---------Initial string--------
v_Result_st ...
SQL-99中,在select中使用distinct关键字后,在order by中出现的字段名称不能超过select子句的范围,如:
SQL> select distinct ename,sal from emp order by deptno;
select distinct ename,sal from emp order by deptno
*
ERROR at line 1:
ORA-01791: not a SELECTed expression
SQL> select distinct ename,sal from emp order by sal;
ENAME SAL
...
進來有五個月了,工作很輕松,學的東西卻很少,把以前的JAVA也忘的差不多了,把NET模糊的很,有些感覺象混的一樣,因為別一半的不穩定,因為自己的不安心,生活就是這樣,一個目標過去,後面緊跟著更我,沒有停息的,又何必為想不到的發愁那,面對眼前還是快些腳步。
在這裏公司,有更大的空間自學發展,一切都給予我了,如果最後後悔,那種感覺是我這一輩子都無法換回的,
努力不僅是說,而更多的是做,自己應該明白,應該了解,越投入越輕松,越投入站的更高。
祝福離開的同事,更上一層樓,
1.
以前用Excel的控件做报表。 报表的格式可以由用户自己制作,比如报表的标题、每行每列的内容等。感觉还是很方便的。缺点是电脑里必须装excel。
2.
?以前用Excel的控件做报表。 ,比如报表的标题、每行每列的内容等。感觉还是很方便的。缺点是电脑里必须装excel。
报表的格式可以由用户自己制作,这是Excel的优点,但是那也有麻烦的地方,比如打印问题是最大的麻烦,报表无论如何难以做成符合中国人的习惯。还有就是分组统计等要进行计算时要写大量公式,对普通用户来说必须学Excel.有很多办公室人员难以学会公式编写.
还有就是从其它数据库中跟它的相互 ...
- 2008-02-19 10:32
- 浏览 3328
- 评论(0)
做JAVA的我,变成做NET的了,而且做了二个多月,还可行,看来未毕是件不好的事,最起码证明我的适宜能力,以后要在JAVA里写NET了
- 2008-01-24 13:06
- 浏览 952
- 评论(0)