[Mydatabasepilot-cvs] MyDatabasePilot/Query dbGeneralInfo.cfm,1.1.1.1,1.2
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-04-13 05:29:38
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/Query In directory sc8-pr-cvs1:/tmp/cvs-serv10136 Modified Files: dbGeneralInfo.cfm Log Message: Header comment changed Index: dbGeneralInfo.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/Query/dbGeneralInfo.cfm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** dbGeneralInfo.cfm 23 Mar 2003 03:44:36 -0000 1.1.1.1 --- dbGeneralInfo.cfm 13 Apr 2003 05:29:34 -0000 1.2 *************** *** 1,17 **** ! <!---******************************************************************************************* ! * Copyright: MyDatabase Pilot is distributed under the terms of the GNU GPL license * ! * Template: dbGeneralInfo.cfm * ! * Purpose: Creates a Record Set with General Information about the Database Server * ! * Requiremets: Connection Variables must already be set * ! * Todo: * ! * Known Issues/Bugs: * ! ********************************************************************************************---> ! ! <!---||| Collect General Information about the Database Currently in use and the Database Server |||---> ! <!--- Initiate a Read Only lock to ensure the integrity of session variables ---> ! <cflock timeout=20 throwontimeout="no" type="readonly" scope="session"> ! <!--- Create Recordset with general database info ---> ! <cfquery name="dbGeneralInfo" datasource="#session.dataSource#" username="#session.userName#" password="#session.password#"> ! SELECT VERSION() AS version, NOW() AS serverTime, DATABASE() AS dbInUse; ! </cfquery> </cflock> --- 1,15 ---- ! <!---******************************************************************************************* ! * Copyright: MyDatabase Pilot is distributed under the terms of the GNU GPL license * ! * Template: Query/dbGeneralInfo.cfm * ! * Purpose: Creates a Record Set with General Information about the Database Server * ! * Requiremets: Connection Variables must already be set * ! ********************************************************************************************---> ! ! <!---||| Collect General Information about the Database Currently in use and the Database Server |||---> ! <!--- Initiate a Read Only lock to ensure the integrity of session variables ---> ! <cflock timeout=20 throwontimeout="no" type="readonly" scope="session"> ! <!--- Create Recordset with general database info ---> ! <cfquery name="dbGeneralInfo" datasource="#session.dataSource#" username="#session.userName#" password="#session.password#"> ! SELECT VERSION() AS version, NOW() AS serverTime, DATABASE() AS dbInUse; ! </cfquery> </cflock> |