主页 > 知识库 > javascript asp教程More About Recordsets

javascript asp教程More About Recordsets

热门标签:常用地图标注范围点 为什么外呼系统需要预存话费呢 咸阳销售外呼系统 外呼回拨系统图片 离线电子地图标注软件注册 企数外呼系统能用多久 宁夏怎么申请400电话 兰州智能语音电销机器人功能 办理400电话一年多少钱

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 worth mentioning. Most good resources on SQL will also be good resources on database management. Better database schema leads to better ASP code.

Get Started:

Below is the script for Lesson 18.

%@LANGUAGE="JavaScript"%>
!-- METADATA TYPE="typelib" 
FILE="C:\Program Files\Common Files\System\ado\msado15.dll" -->
HTML>
BODY>
%
var myConnect = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source="; 
myConnect += Server.MapPath("\\")
myConnect += "\\GlobalScripts\\htmlColor.mdb;";

var ConnectObj = Server.CreateObject("ADODB.Connection");
var RS = Server.CreateObject("ADODB.Recordset");
var sql="SELECT * FROM colorChart;";

ConnectObj.Open (myConnect);
RS.Open(sql,ConnectObj,adOpenForwardOnly,adLockReadOnly,adCmdText);

var recordCount = RS.Fields.Count;
var x = 0;
var getFieldNames = false;

Response.Write("TABLE BORDER=\"1\" CELLSPACING=\"0\">\r");
while (!RS.EOF)
	{
	if (x >= recordCount)
		{
		x = 0
		}
	Response.Write("TR>");
	if (!getFieldNames)
		{
		while (x = recordCount-1)
			{
			Response.Write("TH>" + RS.Fields(x).Name + "/TH>");
			x++;
			}
		getFieldNames = true;
		x = 0;
		Response.Write("/TR>\rTR>")
		}
	while (x = recordCount-1)
		{
		Response.Write("TD>" + RS.Fields(x).Value + "/TD>");
		x++;
		}
	Response.Write("/TR>\r");
	RS.MoveNext();
	}
Response.Write("/TABLE>\r");
RS.Close();
ConnectObj.Close();
RS = null;
ConnectObj = null;
%>
/BODY>
/HTML>

Click Here to run the script in a new window.

I don't think this needs much explaining. The RS.Fields.Count tells us how many columns wide the Recordset is. For each row, we loop through columns using either RS.Fields(x).Name for the colum name or RS.Fields(x).Value for the datum in said column.

Another Way:

A potentially more elegant way to accomplish this same goal is to use the ADO Method GetRows. It returns a multi-dimensional array containing the Recordset data. WAIT! Aren't JavaScript Arrays lexical (and flat)? Yes. We can emulate multi-dimensional arrays, but in reality they are flat. So it's a no-go on the GetRows... unless we do something really creative.

%@LANGUAGE="JavaScript"%>
!-- METADATA TYPE="typelib" 
FILE="C:\Program Files\Common Files\System\ado\msado15.dll" -->
HTML>
BODY>
%
var myConnect = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source="; 
myConnect += Server.MapPath("\\")
myConnect += "\\GlobalScripts\\htmlColor.mdb;";

var ConnectObj = Server.CreateObject("ADODB.Connection");
var RS = Server.CreateObject("ADODB.Recordset");
var sql="SELECT * FROM colorChart;";
ConnectObj.Open (myConnect);
RS.Open(sql,ConnectObj,adOpenForwardOnly,adLockReadOnly,adCmdText);

var myArray = RS.GetRows().toArray();
Response.Write("Let's see the results of myArray as JavaScript");
Response.Write(" sees them (which is flat).BR>\r");
Response.Write(myArray + "BR>BR>\r")

RS.MoveFirst();
var myVBArray = new VBArray(RS.GetRows())
Response.Write("We can use the I>new VBArray/I> constructor and the ")
Response.Write("I>getItem( )/I> method. For example: myVBArray.getItem(1,1) ")
Response.Write("returns " + myVBArray.getItem(1,1) + "BR>BR>\r")

Response.Write("Now lets make something useful.BR>\r")
Response.Write("TABLE BORDER=1 CELLPADDING=0 CELLSPACING=0>")
Response.Write("\rTR>")
for (var x=0; x=myArray.length-1; x++)
	{
	Response.Write("TD>" + myArray[x] + "/TD>")
	if ((x+1)%RS.Fields.Count==0)
		{
		Response.Write("/TR>\rTR>")
		}
	}
Response.Write("/TR>\r")
Response.Write("/TABLE>")
RS.Close();
RS = null;
ConnectObj.Close();
ConnectObj = null;
%>
/BODY>
/HTML>

Click Here to run the script in a new window.

Notice when we use getRows( ) we don't get the column names (but that would be really easy to fix). The problem with myArray is that it's not very useful in its raw state. So we use a modulo operator and thanks to a little thing called RS.Fields.Count we can tell how many times we write data to the table before staring a new table row.

If you like the new VBArray constructor you should know that you have the following methods: dimensions() getItem() lbound() toArray() and ubound().

标签:温州 咸阳 铁岭 昆明 家电维修 丽江 泰州 昌都

巨人网络通讯声明:本文标题《javascript asp教程More About Recordsets》,本文关键词  javascript,asp,教程,More,About,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《javascript asp教程More About Recordsets》相关的同类信息!
  • 本页收集关于javascript asp教程More About Recordsets的相关信息资讯供网民参考!
  • 推荐文章