我就在这里
发布时间:2013-02-17 11:05:36
sqlca连接成功,可以再select 、insert、update时sqlerrtext提示mismatch between retrieve columns and fetch 这个错误1.column不存在2.对column赋值和接受时候类型不匹配3.select结果顺序可能和fetch顺序不一样,导致不匹配4.查询列数和变量数目对应不上5.正在检索(select)又Fetch.........【阅读全文】
发布时间:2013-02-15 22:21:49
在python中遇到编码问题是一个非常痛苦的问题。今天修改了一个这样的问题。文件 test.xml内容如下<?xml version=”1.0″ encoding=”gbk”?><toplist>…………….</toplist>要用python解析一下文件的内容。采用minidom解析xmldoc = minidoc.parse(file_name);会出现这个错误xml.par.........【阅读全文】
发布时间:2013-02-11 14:11:43
经常有人在询问如何快速将文本文档中的“,”批量替换为Tab制表符,以方便将文本文档快速导入datawindow中。 大多数PB程序员都是建议使用fileopen、fileread(9及以前版本。10及以后版本用filereadex)的方法读入,然后再自己写个函数进行字符串的replace 。这种方法未尝不可,只是效率太低。 &nbs.........【阅读全文】
发布时间:2013-01-31 20:09:03
jboss-as 目录结构(Directory Structure)DirectoryDescriptionbinContains startup, shutdown and other system-specific scripts. Basically all the entry point JARs and start scripts included with t.........【阅读全文】
发布时间:2013-01-31 19:46:26
一、设置Connector 修改server/default/deploy/jboss-web.deployer/server.xml Xml代码 <Connector port="80" address="0.0.0.0" maxThreads="250" maxHttpHeaderSize="8192" .........【阅读全文】