win98+PWS环境下连接读取远程SQLServer

from: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=4&txtCodeId=6518
Connect/Read Remote SQL server Using PWS in win 98

     I had to test Microsoft's Personal Webserver (PWS) in win 98 to access Remote SQL server 7.0
installed in a NT server. The clients to win 98 had LAN connections. Easy one , don't vote, have fun with
PWS. In fact I tested my connection with this script, before I created an out of process server demo with
VB.

  
  

code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!

Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in
compiled format for langauges that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the
original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame.
4) You will abide by any additional copyright restrictions which the author may have placed in the code or
code's description.  

    '**************************************
    ' Name: Connect/Read Remote SQL server U
    '     sing PWS in win 98
    ' Description:I had to test Microsoft's
    '     Personal Webserver (PWS) in win 98 to ac
    '     cess Remote SQL server 7.0 installed in
    '     a NT server. The clients to win 98 had L
    '     AN connections. Easy one , don't vote, h
    '     ave fun with PWS. In fact I tested my co
    '     nnection with this script, before I crea
    '     ted an out of process server demo with V
    '     B.
    ' By: Manas Mukherjee
    '
    ' Assumes:Knowing Little bit of LAN woul
    '     d help , VPN, HTML, Creating Virtual dir
    '     ectory with PWS
    '
    'This code is copyrighted and has    ' limited warranties.Please see http://w
    '     ww.Planet-Source-Code.com/xq/ASP/txtCode
    '     Id.6518/lngWId.4/qx/vb/scripts/ShowCode.
    '     htm    'for details.    '**************************************
    
    <HTML><HEAD>
    <TITLE> ASP_PUBS/SQL Server In NT server</TITLE>
    </HEAD>
    <BODY><CENTER>
    <%
    Dim objConn, objRS, strQ, strOut, I
    Set objConn = Server.CreateObject("ADODB.Connection")
    objConn.open "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial
Catalog=pubs;Data Source=\URServerName"
    Set objRS = Server.CreateObject("ADODB.Recordset")
    strQ = "SELECT emp_id, fname, lname,job_id "
    strQ = strQ & "FROM Employee "
    objRS.Open strQ, objConn, , , adCmdText
    %>
    <TABLE BORDER=1 CELLPADDING=4>
    Connected To the Database Pubs
    using connect String "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial
Catalog=pubs;Data Source=\URServername"
    <TH> "EmployeeID" </TH>
    <TH> "FirstName" </TH>
    <TH> "LastName" </TH>
    <TH> "job_id" </TH>
    <% Do While Not objRS.EOF %> <TR>
    <TD> <% = objRS("emp_id") %>
    <TD> <% = objRS("fname") %>
    <TD> <% = objRS("lname") %></TR>
    <TD> <% = objRS("job_id") %></TR>
    <% objRS.MoveNext %>
    <% Loop %>
    <% objRS.Close %>
    <% Set objRS = Nothing %>
    <% Set objConn = Nothing %>
    </TABLE>
    </CENTER>
    </BODY>
    </HTML&gt

时间: 2024-11-03 16:39:59

win98+PWS环境下连接读取远程SQLServer的相关文章

linux环境下c++读取access数据库方法

问题描述 linux环境下c++读取access数据库方法 RT,还可以保证跨平台,在win环境中也可以编译运行的方法,先谢谢各位了 解决方案 好偏门,好冷门啊~我也想知道该怎么弄

linux环境下php读取csv文件中文读取不到的问题解决办法

在LIUNX环境下PHP读取csv文件的时候,csv文件中的中文不显示.... 终于找到了解决方案,下面和大家分享下! 在执行csv文件读取前加上一句: setlocale(LC_ALL, 'zh_CN'); 瞬间,问题解决了.... 实例: <?phpsetlocale(LC_ALL, 'zh_CN');$handle = fopen("xxx.csv","r");while ($data = fgetcsv($handle, 1000,',')) { ..

Spring+iBATIS在tomcat环境下连接weblogic数据源报错,Failed to Generate Wrapper Class

问题描述 情况是这样的,我再tomcat环境下开发Spring+iBATIS整合的DAO层应用,配置数据源时是这样配置的:<beanid="dataSource"class="com.inspur.osgi.datasource.JNDIDataSource"destroy-method="close"><propertyname="providerUrl"value="t3://127.0.0.1

生产环境下was不允许重启,怎么办?

  前段时间上线,遇到一个jndi的故障问题,怎么个问题呢?就是原在测试环境下没有问题,而在生产环境下无法连接生产数据库,当时找到问题所在,就是ibm工具自动生成一个在测试环境下连接的jndi的资源文件resources.xml,当时删除了,重启了server,无效.后来我考虑到这肯定是was缓存造成,因此想象缓存造成的原因,最后在测试环境下重启了was,问题解决了,但后来说生产环境是不可能重启was的,因此暂时困老了本人,后来所谓的领导说,他去找总架构师看有没有办法解决,可是时间不等人,过了2

对象-VS2010 调试环境下与生成后 的错误提示,高手给看看

问题描述 VS2010 调试环境下与生成后 的错误提示,高手给看看 VS2010 调试环境下连接SQL,提取数据都正常,,方案生成以后,为什么所有连接SQL的地方都是未将对象引用设置到实例,郁闷那,是不是少什么动态库了 解决方案 sql连接地址如果有改变的话,检查连接字符串. 解决方案二: 方案生成是什么意思?换电脑了?还是换运行目录了? 如果调试环境下链接SQL正常,问题就不大. 解决方案三: 没有换电脑,生成后直接运行的exe,和VS项目不在同一个目录.数据库连接字符串一样.意思就是离开VS

ltnmp环境下php连接sqlserver的方法教程

1.环境: centos6.5_x64; php5.6.11; Tengine-2.1.0; FreeTDS-0.95.19; 远程SQLServer:2008; 官网下载:ftp://ftp.freetds.org/pub/freetds/stable/freetds-patched.tar.gz(好像下载不了,技安在下载的时候始终只能下载到10%,然后就停住了,就停住了,就停住了-). 这是技安费好大力气才下载的,分享出来下载: 0.95.19: freetds-patched.tar.gz

link环境下制作一款《订餐软件》,请问远程调用怎么执行账套提交验证?

问题描述 link环境下制作一款<订餐软件>,请问远程调用怎么执行账套提交验证? link环境下制作一款<订餐软件>,请问远程调用怎么执行账套提交验证? 解决方案 远程调用可以通过web service去调用 解决方案二: 可以设置一个总库,先连接总库进行验证,然后返回所有的账套进行选择,最后再连接对应帐套的数据库

在Linux(UNIX)下连接MS SQLserver的方法

     一般人看见这个题目时很惊讶,既然使用Linux(UNIX)操作系统,完全可以使用orcale,MYSQL或者PostGreSQL数据库,并且在Linux(UNIX)系统下使可以更加充分的使用这些数据库的特性.而MS SQLSERVER不提供Linux(UNIX)版的服务器端(客户端)安装,所以无法使用MS SQLSERVER数据库. 但是现实总是这样的,在一些情况下(尤其是多个项目组共同开发时),会出现windows下连接Linux(UNIX)数据库,同样也会出现在Linux(UNIX

openwrt-动态上网环境下,经过了二层交换机,PC连接路由器无法分配IP。

问题描述 动态上网环境下,经过了二层交换机,PC连接路由器无法分配IP. openwrt系统,动态上网环境下,上层网络会自动分配IP下来.路由器wan口直连外网,重启路由器后,pc连接此路由器的WiFi可以分配到IP.但是,如果路由器中间加了一层交换机就不行了.即,路由器wan口连接交换机,交换机另一个口连接外网,在网线都连接的情况下,重启路由器.重启完成后pc连接此路由器的WiFi却始终无法分配到ip地址,pc也无法上网,路由器能上网.交换机是二层交换机,无任何配置界面,通电即可使用.请问有没