摘要:在js里,每个函数都有一个执行的上下文,我们可以通过this来访问。 如: 全局函数 function test(){ var local = this; } 我们发现local等于window(dom根对象),也就是说全局函数实际上是window的一个属性。 同理全局变量也是如此。 比如 var name = ‘phil’; 我们可以通过window[‘name’]或者window.name ...
阅读全文
摘要:oracle table: CREATE TABLE "SCOTT"."TEST_BLOB" ( "NAME" VARCHAR2(200), "PHOTO" BLOB ) Operating Code: private static void OprBlob() { var connStr = ConfigurationManager.ConnectionStrings["ora"].Con...
阅读全文
摘要:update mkt_page_links set longdescription = ' {some html text > 4000 char} ' where menuidno = 310;(longdescription type is clob)execute this cmd against oracle database via OracleClient, you will get the following error.ORA-01704: string literal too longCause: The string literal is longer
阅读全文
摘要:使用.net访问oracle数据库时一般需要在机器上安装instantclient才能正常连接。下面介绍一种不用安装instantclient直接引用dll就用.net能连接oracle数据库的方法:1. 下载x86的ODAC1120320Xcopy_32bit包使用x86的包是因为vs建立的asp.net项目默认指定的是x86的类库,而且无论你将项目的target设置为64,或者x86使用的都是x86的类库,如果你引用的Oracle.DataAccess.dll是64bit的话在运行的时候会报错。2. 将一下5个文件从压缩包中拷贝出来。其中Oracle.DataAccess.dll使用类库引
阅读全文