所属类别:Asp
文章作者:佚名
特别推荐:免费发布信息 承包关键词~~抢爆了!HOT!
<%' BEGIN USER CONSTANTS' To just use a DSN, the format is shown on the next line:'Const DSN_NAME = "DSN=ASP101email"' Two other samples I used it with. Left in as syntax examples for DSN-less connections'Const DSN_NAME = "DBQ=C:\InetPub\wwwroot\asp101\samples\database.mdb;Driver={Microsoft Access Driver (*.mdb)};DriverId=25"'Const DSN_NAME = "DBQ=C:\InetPub\database\donations.mdb;Driver={Microsoft Access Driver (*.mdb)};DriverId=25"Dim DSN_NAMEDSN_NAME = "DBQ=" & Server.MapPath("db_dsn.mdb") & ";Driver={Microsoft Access Driver (*.mdb)};DriverId=25;"Const DSN_USER = "username"Const DSN_PASS = "password"' Ok, I know these are poorly named constants, so sue me!' This script can be used without actually setting up a DSN, so' DSN_NAME as well as the other two constants should really be named' something more generic like CONNECTION_STRING, CONNECTION_USER, and' CONNECTION_PASS, but I did it this way without really thinking about' it and I'm too lazy to change it now. If it bothers you, you do it!' END USER CONSTANTS' BEGIN SUBS & FUNCTIONS SECTIONSub OpenConnectionSet objDC = Server.CreateObject("ADODB.Connection")objDC.ConnectionTimeout = 15objDC.CommandTimeout = 30objDC.Open DSN_NAME, DSN_USER, DSN_PASSEnd SubSub OpenRecordset(sType)Dim sSqlString ' as String - building area for SQL queryDim sCritOperator ' as String - basically "=" or "LIKE"Dim sCritDelimiter ' as String - parameter delimiter "", "'", or "#"Set objRS = Server.CreateObject("ADODB.Recordset")Select Case sTypeCase "ListTables" ' Open RS of the Tables in the DBSet objRS = objDC.OpenSchema(adSchemaTables)Case "ViewTable" ' Open the Selected TableSet objRS = Server.CreateObject("ADODB.Recordset")objRS.Open "[" & sTableName & "]", objDC, adOpenForwardOnly, adLockReadOnlyCase "DrillDown" ' Open the Recordset built by the selected optionsSet objRS = Server.CreateObject("ADODB.Recordset")' Build Our SQL StatementsSqlString = "SELECT * FROM [" & sTableName & "]"' If we're limiting records returned - insert the WHERE Clause into the SQLIf sCritField <> "" Then' Figure out if we're dealinh with Numeric, Date, or String ValuesSelect Case iCritDataTypeCase adSmallInt, adInteger, adSingle, adDouble, adDecimal, adTinyInt, adUnsignedTinyInt, adUnsignedSmallInt, adUnsignedInt, adBigInt, adUnsignedBigInt, adBinary, adNumeric, adVarBinary, adLongVarBinary, adCurrency, adBooleansCritOperator = "="sCritDelimiter = ""Case adDate, adDBDate, adDBTime, adDBTimeStampsCritOperator = "="sCritDelimiter = "#"Case adBSTR, adChar, adWChar, adVarChar, adLongVarChar, adVarWChar, adLongVarWCharsCritOperator = "LIKE"sCritDelimiter = "'"End SelectsSqlString = sSqlString & " WHERE [" & sCritField & "] " & sCritOperator & " " & sCritDelimiter & sCritValue & sCritDelimiterEnd If' If we're sorting - insert the ORDER BY clauseIf sSortOrder <> "none" ThensSqlString = sSqlString & " ORDER BY [" & sSortField & "] " & sSortOrderEnd IfsSqlString = sSqlString & ";"' Open the actual Recordset using a Forward Only Cursor in Read Only ModeobjRS.Open sSqlString, objDC, adOpenForwardOnly, adLockReadOnlyEnd SelectEnd SubSub CloseRecordsetobjRS.CloseSet objRS = NothingEnd SubSub CloseConnectionobjDC.CloseSet objDC = NothingEnd SubSub WriteTitle(sTitle)Response.Write "" & sTitle & "" & vbCrLfEnd SubSub WriteTableHeaderResponse.Write "" & vbCrLfEnd SubSub WriteTableRowOpenResponse.Write "" & vbCrLfEnd SubSub WriteTableCell(bCellIsTitle, sContents)Response.Write vbTab & ""If bCellIsTitle Then Response.Write ""Response.Write sContentsIf bCellIsTitle Then Response.Write ""Response.Write "" & vbCrLfEnd SubSub WriteTableRowCloseResponse.Write "" & vbCrLfEnd SubSub WriteTableFooterResponse.Write "" & vbCrLfEnd Sub' END SUBS & FUNCTIONS SECTION' BEGIN RUNTIME CODE' Before I start with the run-time code, let me clear up a few things.' I've tried (and succeeded I think!) to keep all the actual HTML' formatting contained within Subs. Hence things should be relatively' consistent as well as being easy to change if you say want a larger' border or perhaps a table background color or whatever...' This, along with my attempts to try and keep my sanity, have resulted' in a rather large proportion of Sub/Function Calls to actual code.' Since I'm sure this is probably confusing to many newcomers to ASP' and/or VB, I've attempted to preface each call with the optional' Call command. Also any SUB or FUNCTION whose name starts with the' word "Write" is basically just an encapsulation of some variation of' a Response.Write command, while the remainder of the name represents' whatever it happens to write.' IE. WriteTableRowClose writes the tags used to end (or close) a table row' The actual HTML is (as usual) pretty vanilla flavored. If you want' rocky-road or mint ting-a-ling (a marvelous piece of ice cream' craftsmanship I might add), you'll need to edit the Write functions.' Just be aware of the fact that any change to a SUB will affect ALL' uses of it, so check the code before you try and make a change to' just one cell and end up changing them all!' Okay enough of my rambling......Onwards to the Code!!!Dim objDC, objRS ' DataConnection and RecordSetDim I ' As Integer - Standard Looping VarDim strTemp ' As String - Temporary area for building long stringsDim sAction ' As String - Action String to choose what to doDim sTableName ' As String - ...so we know what to do it toDim sSortField ' As String - Field to sort byDim sSortOrder ' As String - ...ASC or DESCDim sCritField ' As String - Field for DrillDownDim sCritValue ' As String - ...Value to compare toDim iCritDataType ' As Integer - so we know how to compare' Note to all you programmers out there!' IE4 broke this code when my QueryString was named parameter because' it was converting the ¶ to the Paragraph sign even though it was' in the middle of a word and there was no trailing ;. It works great' in Netscape. Here's another case where IE's efforts to make things' foolproof ruined the asp code!' Get all the parameters we'll needsAction = Request.QueryString("action")If sAction = "" Then sAction = "ListTables"sTableName = Request.QueryString("tablename")sSortField = Request.QueryString("sf")Select Case LCase(Request.QueryString("so"))Case "asc"sSortOrder = "ASC"Case "desc"sSortOrder = "DESC"Case ElsesSortOrder = "none"End SelectsCritField = Request.QueryString("cf")If Len(sCritField) = 0 Then sCritField = ""sCritValue = Request.QueryString("cv")iCritDataType = Request.QueryString("cdt")If Len(iCritDataType) <> 0 And IsNumeric(iCritDataType) Then iCritDataType = CInt(iCritDataType)' Start the actual DB work' Code common to all choices.Call OpenConnectionCall OpenRecordset(sAction)Select Case sActionCase "ShowDataConnectionProperties" ' Cool to look at but not really part of the sample!' Fake it out so we don't have problems closing the DBOpenRecordset("ListTables")' Get all the DataConn PropertiesFor I = 0 to objDC.Properties.Count - 1Response.Write I & " " & objDC.Properties(i).Name & ": " & objDC.Properties(I) & "" & vbCrLfNext 'ICase "ListTables"Call WriteTitle("Tables")If Not objRS.EOF Then objRS.MoveFirstCall WriteTableHeaderCall WriteTableRowOpenCall WriteTableCell(True, "Table Name")Call WriteTableRowCloseDo While Not objRS.EOFIf objRS.Fields("TABLE_TYPE") = "TABLE" ThenCall WriteTableRowOpenCall WriteTableCell(False, "" & objRS.Fields("TABLE_NAME") & "")Call WriteTableRowCloseEnd IfobjRS.MoveNextLoopCall WriteTableFooterCase "ViewTable", "DrillDown" ' The same here but in the OpenRecordset SUB they're very different.Call WriteTitle(sTableName)If Not objRS.EOF Then objRS.MoveFirstCall WriteTableHeaderCall WriteTableRowOpenFor I = 0 to objRS.Fields.Count - 1' Build heading - the "sort by" links' Was all on the line WriteTableCell line but I split it up for readability' Field name for the headingstrTemp = objRS.Fields(I).Name' Begin Anchor for the + SignstrTemp = strTemp & " (+"' End Anchor for the + Sign' Begin Anchor for the - Sign' Next 8 lines are basically the same as above except for the sort order (so)strTemp = strTemp & "/-)"' End Anchor for the - SignCall WriteTableCell(True, strTemp)Next 'ICall WriteTableRowCloseDo While Not objRS.EOFCall WriteTableRowOpenFor I = 0 to objRS.Fields.Count - 1If IsNull(objRS.Fields(I).Value) Or objRS.Fields(I).Value = "" Or VarType(objRS.Fields(I).Value)= vbNull ThenstrTemp = " "Else' These set the drill down values which get passed if you click on any valuestrTemp = ""strTemp = strTemp & objRS.Fields(I).ValuestrTemp = strTemp & ""End IfCall WriteTableCell(False, strTemp)Next 'ICall WriteTableRowCloseobjRS.MoveNextLoopCall WriteTableFooterEnd Select' Close Data Access Objects and free DB variablesCall CloseRecordsetCall CloseConnection' END RUNTIME CODE%> 关闭本页
相关信息· 实用技巧:使用LoadRunner监控Linux方法
· 在ubuntu下用wine玩魔兽世界
· 关于控件注册和使用许可问题的解决办法
· 实用技巧:Word实用技巧八则
76608
59058
