Robert Lee
技术不是工作的全部,工作不是生活的全部
随笔- 35  文章- 0  评论- 338 
博客园  首页  新随笔  联系  管理  订阅 订阅
09 2007 档案
PLSQL中的&字符处理

摘要: 以前碰到过这个问题,后来忘了>_< 这次正好同事遇到这个问题,记录一篇日志备忘。 问题很容易描述,就是在SQL语句中的字符串中出现了&符号,当执行的时候会被认为是参数需要传递,如update product set brand = 'D&G'; 解决办法是把语句改为:update product set brand = 'D' || '&' || 'G'; 或者...阅读全文
posted @ 2007-09-22 15:25 Robert Lee 阅读(557) | 评论 (0) 编辑
Oracle中的Union、Union All、Intersect、Minus

摘要: 众所周知的几个结果集集合操作命令,今天详细地测试了一下,发现一些问题,记录备考。 假设我们有一个表Student,包括以下字段与数据: drop table student; create table student(id int primary key,name nvarchar2(50) not null,score number not null); insert into student...阅读全文
posted @ 2007-09-19 10:55 Robert Lee 阅读(8009) | 评论 (6) 编辑
最近开始研究和关注的技术

摘要: 留个草稿,慢慢补充。 Acropolis,基于WPF的应用程序框架,某种角度可以认为是CAB的WPF实现; http://windowsclient.net/acropolis/,Cider似乎还是不完善......不知道VS2008 Release时能不能妥善处理好WPF在设计期的渲染。 Autoit,自动化实现工具,能够通过编程完成许多复杂的操作; http://www.autoitscrip...阅读全文
posted @ 2007-09-18 18:32 Robert Lee 阅读(333) | 评论 (1) 编辑

Copyright ©2012 Robert Lee