搜索列表
-
XML 增、删、改和查示例
【XML/RSS】1.已知有一个XML文件(bookstore.xml)如下: <?xml version="1.0" encoding="gb2312"?><bookstore> <book genre="fantasy" ISBN="2-3631-4"> <title>Oberon's Legacy</title> <author>Corets, Eva</author...
XML增、删、改和查示例 -
IBM DB2 日常维护汇总(二)
【DB2】正在看的db2教程是:IBM DB2 日常维护汇总(二)。 10.AIX下用哪个命令来安装DB2? INSTALLP命令 11.同一操作系统下可以安装多个DB2数据库? 可以的 12.如何停止实例? DB2STOP 13.如何启动实例? DB2START 14.如何修改注册...
|IB|BM|MD|DB|B2|2日|日常|常维|维护|护汇|汇总|总(|(二|二)|)| -
IBM DB2 日常维护汇总(五)
【DB2】正在看的db2教程是:IBM DB2 日常维护汇总(五)。 64.如何更新系统上所使用的许可政策类型? DB2LICM-PREGISTEREDCONCURRENT 65.如何更新系统上的处理器的数量? DB2LICM-N 66.如何查询许可文件记录的版本信息? DB2LICM-V 67.如何查询DB2L...
|IB|BM|MD|DB|B2|2日|日常|常维|维护|护汇|汇总|总(|(五|五)|)| -
DB2编程序技巧 (八)
【DB2】正在看的db2教程是:DB2编程序技巧 (八)。4.2 创建Database create database head using codeset IBM-eucCN territory CN; 这样可以支持中文。 4.3 手工做数据库远程(别名)配置 db2 catalog tcpip node node1 &...
|DB|B2|2编|编程|程序|序技|技巧|巧八|八| -
DB2编程序技巧 (九)
【DB2】正在看的db2教程是:DB2编程序技巧 (九)。4.8 查看本instance下有哪些database db2 LIST DATABASE DIRECTORY [ on /home/db2inst1 ] 4.9 查看及更改数据库head的配置 请注意,在大多数情况下,更改了数据的配置后,只有在所有的连接全部断掉后才会生效。...
|DB|B2|2编|编程|程序|序技|技巧|巧九|九| -
DB2优化(简易版)
【DB2】正在看的db2教程是:DB2优化(简易版)。预备—monitors ON db2 "update monitor switches using lock ON sort ON bufferpool ON uow ON table ON statement ON" 打开监视开关,获取需要的性能信...
|DB|B2|2优|优化|化(|(简|简易|易版|版)|)| -
javascript asp教程 日期相关
【ASP编程】JavaScript is loosely typed. Database files are not. If you put text into a Boolean database column or a Boolean value into a date/time column, then you will get an error. For the most part this is not a problem, except for date/time. It does not correspond to the JavaScript Date Object...
javascriptasp教程日期相关 -
javascript asp教程添加和修改
【ASP编程】The Connection Execute(): If you want to retrieve data from a database then you have no choice but to use a Recordset. However, for the purposes of adding, updating, and deleting data you don't necessarily have to have a Recordset. It's up to you. For the purposes of adding, updating and delet...
javascriptasp教程添加和修改 -
javascript asp教程More About Recordsets
【ASP编程】Below we will attempt to access data from a database without knowing the column names. Clearly the best way to utilize data in your database is to keep track of your schema. Schema is the layout of data in your database. The concept is well beyond the scope of this web site, but it is ...
javascriptasp教程MoreAboutRecordsets -
javascript asp教程Recordset记录
【ASP编程】Recordset is another created/instanciated Object. It is a collection of data taken from a database. Recordset has 26 properties, 25 methods, 11 events, and two (2) collections. The vast majority of Recordset is beyond the scope of this web site. Quick Aside: The database we are using for l...
javascriptasp教程Recordset记录 -
javascript asp教程第十二课---session对象
【ASP编程】Overview: The Session Object is how you track a single user across many pages. It has four (4) properties, two (2) collections, one (1) method, and two (2) events. Get Started: In this series of examples we will create a password system. We will use the Session Object to track whet...
javascriptasp教程第十二课---session对象 -
javascript asp教程第九课--cookies
【ASP编程】Response Cookies in General: We'll start with the Response Cookies collection. I don't think it could be any easier. You simply put the name of the cookie in the argument. The corresponding value is a string. The only time it gets complicated is when you use keys (which I demonstrate b...
javascriptasp教程第九课--cookies