<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[linuxの飘扬]]></title> 
<link>https://www.linuxfly.org/index.php</link> 
<description><![CDATA[Power by www.linuxfly.org]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[linuxの飘扬]]></copyright>
<item>
<link>https://www.linuxfly.org/post/162/</link>
<title><![CDATA[[原]一个使用ASP连接MySQL的留言版]]></title> 
<author>linuxing &lt;emos#linuxfly.org&gt;</author>
<category><![CDATA[ASP]]></category>
<pubDate>Tue, 25 Sep 2007 09:11:40 +0000</pubDate> 
<guid>https://www.linuxfly.org/post/162/</guid> 
<description>
<![CDATA[ 
	 &nbsp; &nbsp;前面描述了在红旗Linux上如何搭建运行ASP语言的环境，也对MS SQL和Mysql两数据库的连接方式进行了说明。下面用一个常见的留言版源码，来看看实际环境中，Linux下的ASP代码如何编写，以及要注意那些地方。<br/><strong><span style="color: #4169E1;">一、系统环境</span></strong><br/>原代码：<br/><strong><span style="color: #FF4500;">Z-BLOG 留言本 v1.0</span></strong><br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">所支持的流行功能有：防止重复发贴功能；长英文的断行功能；斑竹回复功能；留言搜索功能；支持分页，可修改每页显示留言数。<br/>运行环境：Windows 2000 + IIS 5.0 + Access .mdb数据库</div></div><br/>新代码：<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">功能相同，但运行环境可基于Windows＋Linux或纯Linux平台。<br/>Linux：红旗 DC Server 5.0，Mysql 4.1<br/>或<br/>Windows：MSSQL 2000</div></div><br/>............<br/><br/>Tags - <a href="https://www.linuxfly.org/tags/mssql/" rel="tag">mssql</a> , <a href="https://www.linuxfly.org/tags/mysql/" rel="tag">mysql</a> , <a href="https://www.linuxfly.org/tags/iasp/" rel="tag">iasp</a> , <a href="https://www.linuxfly.org/tags/asp/" rel="tag">asp</a>
]]>
</description>
</item><item>
<link>https://www.linuxfly.org/post/161/</link>
<title><![CDATA[[原]基于Linux使用ASP连接MySQL]]></title> 
<author>linuxing &lt;emos#linuxfly.org&gt;</author>
<category><![CDATA[ASP]]></category>
<pubDate>Sat, 15 Sep 2007 12:55:51 +0000</pubDate> 
<guid>https://www.linuxfly.org/post/161/</guid> 
<description>
<![CDATA[ 
	 &nbsp; 前面提供了基于红旗DC Server 5.0配合iASP，使用ASP连接到独立的MS SQL Server 2000上的方式。这种方式的优点是，不用修改用户的数据库环境。但缺点就是，需要占用一台独立运行Windows 2000 Server的数据库服务器，带来资源上的浪费。<br/> &nbsp; 实际上，我们还有一种结合上述两种模式的方法：让ASP通过iASP连接到Mysql数据库上。当前的Mysql 5.5已经相当的强大，如果数据库中只是使用标准的SQL语言，从SQL 2000或Access中把数据导入到Mysql中都不会很困难。而在基于linnoDB数据引擎的Mysql数据库也可以实现事务处理、存储过程、触发器、日志回滚等工作。Mysql是一个相当强大的开源数据库。<br/>............<br/><br/>Tags - <a href="https://www.linuxfly.org/tags/iasp/" rel="tag">iasp</a> , <a href="https://www.linuxfly.org/tags/asp/" rel="tag">asp</a> , <a href="https://www.linuxfly.org/tags/mysql/" rel="tag">mysql</a> , <a href="https://www.linuxfly.org/tags/mssql/" rel="tag">mssql</a>
]]>
</description>
</item><item>
<link>https://www.linuxfly.org/post/160/</link>
<title><![CDATA[[原]基于Linux使用ASP连接MSSQL ]]></title> 
<author>linuxing &lt;emos#linuxfly.org&gt;</author>
<category><![CDATA[ASP]]></category>
<pubDate>Fri, 14 Sep 2007 08:50:30 +0000</pubDate> 
<guid>https://www.linuxfly.org/post/160/</guid> 
<description>
<![CDATA[ 
	 &nbsp; 上一篇日志讲述了如何在红旗Linux环境中运行ASP程序，也提供了一个简单的事例。接下来要做的，就是在该环境中，尝试用ASP连接到数据库中。因为不能连接数据库的ASP程序几乎是没有意义的。<br/> &nbsp; 已经知道，ASP是运行在iASP中间环境之上的。而iASP使用的是Java平台，所以，连接数据库的时候需要借用jdbc接口，而不是Windows地下的odbc接口。下面以连接MS SQL 2000服务器为例说明。当然，也可以连接到Mysql上的。<br/>............<br/><br/>Tags - <a href="https://www.linuxfly.org/tags/iasp/" rel="tag">iasp</a> , <a href="https://www.linuxfly.org/tags/asp/" rel="tag">asp</a> , <a href="https://www.linuxfly.org/tags/mssql/" rel="tag">mssql</a> , <a href="https://www.linuxfly.org/tags/mysql/" rel="tag">mysql</a>
]]>
</description>
</item><item>
<link>https://www.linuxfly.org/post/159/</link>
<title><![CDATA[[原]在linux上运行ASP ]]></title> 
<author>linuxing &lt;emos#linuxfly.org&gt;</author>
<category><![CDATA[ASP]]></category>
<pubDate>Thu, 13 Sep 2007 03:21:12 +0000</pubDate> 
<guid>https://www.linuxfly.org/post/159/</guid> 
<description>
<![CDATA[ 
	 &nbsp; &nbsp;由于ASP编程比较简单，所以在企业中有很多的简单应用都是基于在Windows 2000 Server＋ASP＋MSSQL上的。而这也是企业想把应用迁移到Linux环境的其中一大障碍。若要达到迁移的目的，通常有两种方式：<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">1、把ASP改PHP，MSSQL换Mysql，效果好，性能稳定，可靠性强，但耗费时间比较多，费用比较高，用户不容易接受；<br/>2、让ASP通过中间环境直接运行在Linux平台上，连接到独立的MSSQL上，这对用户的影响不大，容易接受，工作量相对较低，但可能因中间环境对ASP的支持不够完善，所以部分代码可能不能识别，须调整，需考虑成功率。</div></div><br/>下面要实现的主要是指第二种方式。<br/>通过努力，已经实现了红旗Linux＋Apaceh＋iASP＋ASP连接到独立的MSSQL服务器上。性能和效果都不错，可供实际应用参考。<br/>............<br/><br/>Tags - <a href="https://www.linuxfly.org/tags/iasp/" rel="tag">iasp</a> , <a href="https://www.linuxfly.org/tags/asp/" rel="tag">asp</a>
]]>
</description>
</item>
</channel>
</rss>