Enhancements for ADO.NET 2.0 09/03/2006 | jiangws2002 The following features are new in ADO.NET version 2.0: Managed Providers * Server Enumeration Provides support for enumerating active instances of Microsoft SQL Server 2000 and later. * Asynchronous Processing Allows you to perform asynchronous database operations using an API that is modeled after the asynchronous model used by the .NET Framework. * Multiple Active… Read More
Enhancements for Windows Forms 2.0 09/03/2006 | jiangws2002 Windows Forms controls are reusable components that not only provide many ready-to-use controls but also provide the infrastructure for developing your own controls. You can combine existing controls, extend existing controls, or author your own custom controls. In Visual Studio 2005, many Windows Forms controls have been enhanced as well as new controls have been… Read More
Enhancements for ASP.NET 2.0 09/03/2006 | jiangws2002 ASP.NET is a programming structure built on the common language runtime. This structure can be used on a server to build powerful Web applications. ASP.NET 2.0 improves upon the base of advantages by adding support for many new features in: Developer Productivity Administration and Management Extensibility Performance The following gives an explanation on the enhancements.… Read More
Refactoring in Visual Basic .NET 2005 09/03/2006 | jiangws2002 From:http://www.devexpress.com/Support/BestPractices/IDE/Refactor/index.xml Print this document | Close window Contents Introduction Refactor! from Developer Express is a plug-in for Visual Studio .NET 2005 beta 2 that enables developers to simplify and shape source code, making their code easier to read and less costly to maintain. What is Refactoring Refactoring describes the process of making many small changes… Read More
.Net like Access(V1) – The Code Project – C# Database 09/03/2006 | jiangws2002 リンク: .Net like Access(V1) – The Code Project – C# Database. Introduction Every programmer has a big dream “Programming without code”, practically a lot of database tools offer programming without code, the best 2 tools that I tried are, Microsoft Access and PowerBuilder. if you developed applications using Microsoft Access, you will understand that developing… Read More
.NETプログラミングにピンポイントで役立つテクニックとヒント集 09/03/2006 | jiangws2002 リンク: .NET TIPS - @IT. .NETプログラミングにピンポイントで役立つテクニックとヒント集… Read More
使用正规表达式编写更好的 SQL(oracle) – 30代的挨踢人 09/03/2006 | jiangws2002 リンク: 使用正规表达式编写更好的 SQL(oracle) – 30代的挨踢人. 今のSQLはすごい! 使用正规表达式编写更好的 SQL 作者:Alice Rischert Oracle Database 10g 中的正规表达式特性是一个用于处理文本数据的强大工具 Oracle Database 10g 的一个新特性大大提高了您搜索和处理字符数据的能力。这个特性就是正规表达式,是一种用来描述文本模式的表示方法。很久以来它已在许多编程语言和大量 UNIX 实用工具中出现过了。 Oracle 的正规表达式的实施是以各种 SQL 函数和一个 WHERE 子句操作符的形式出现的。如果您不熟悉正规表达式,那么这篇文章可以让您了解一下这种新的极其强大然而表面上有点神秘的功能。已经对正规表达式很熟悉的读者可以了解如何在 Oracle SQL 语言的环境中应用这种功能。 什么是正规表达式? 正规表达式由一个或多个字符型文字和/或元字符组成。在最简单的格式下,正规表达式仅由字符文字组成,如正规表达式 cat。它被读作字母 c,接着是字母 a 和 t,这种模式匹配 cat、location 和 catalog 之类的字符串。元字符提供算法来确定 Oracle 如何处理组成一个正规表达式的字符。当您了解了各种元字符的含义时,您将体会到正规表达式用于查找和替换特定的文本数据是非常强大的。 验证数据、识别重复关键字的出现、检测不必要的空格,或分析字符串只是正规表达式的许多应用中的一部分。您可以用它们来验证电话号码、邮政编码、电子邮件地址、社会安全号码、IP 地址、文件名和路径名等的格式。此外,您可以查找如 HTML 标记、数字、日期之类的模式,或任意文本数据中符合任意模式的任何事物,并用其它的模式来替换它们。 用 Oracle Database 10g 使用正规表达式 您可以使用最新引进的 Oracle SQL REGEXP_LIKE… Read More
SQL*Loader 09/03/2006 | jiangws2002 SQL*Loader CSVファイルからOracleのテーブルへデータを流し込むツール。 大量のinsert文を発行するよりは、断然高速。 データであるCSVファイルや固定長ファイルと、ロード方法を指定するコントロールファイルを用意 して実行する。 (CSVファイルからのロードはこのSQL*Loaderが使えるが、CSV出力には標準的な方法は無いらしくて、select文で加工する方法がよく使われるらしい。 このSQL文をいちいち書くのは少々面倒なので、SQL生成用Excelマクロを作ってみました)… Read More
バッチで実行するSQLファイルにパラメタを与える方法 09/03/2006 | jiangws2002 リンク: バッチで実行するSQLファイルにパラメタを与える方法. Oracleでパッチ実行方法: パラメタが渡せるということを教えて頂き、それをきっかけにいろいろ調査した結果、以下で動作できることを確認しました。 まず、実行するバッチファイル(ORA_SQL.BAT)は、 ******************************************* echo on C:\Oracle\Ora81\bin\SQLPLUS Userid/Password@接続文字列 @D:\Sql\OraEX.SQL %1 %2 ******************************************* とします。 OraEX.SQLの内容は以下の通りに修正します。 ******************************************* spool D:\TextLog\A_SYOHIN.log Set echo on SELECT COUNT(*) FROM A_SYOHIN WHERE M_DATE BETWEEN &1 AND &2; spool off; (↑引数部分を”%1″、”%2″では exit; なく、”&1″、”&2″とする) ******************************************* … Read More