diff --git a/query.cfm b/query.cfm
index d3cc16a..00fc1d6 100644
--- a/query.cfm
+++ b/query.cfm
@@ -1,68 +1,74 @@
-
+
+
-
1. Request Scope
-
+
1. Request Information
+
-
2. Application Scope (This)
-
+
2. Application Configuration (this)
+
-
3. Query Result (PostgreSQL)
-
-
- SELECT
- CURRENT_TIMESTAMP as db_time,
- current_database() as db_name,
- current_user as db_user;
-
-
+ 3. Database Verification (PostgreSQL)
+
+
+ SELECT
+ CURRENT_TIMESTAMP as db_time,
+ current_database() as db_name,
+ current_user as db_user;
+
+
+
+ | Connection Status | ✅ ACTIVE |
+ | Database Name | #qTest.db_name# |
+ | Database User | #qTest.db_user# |
+ | Server Timestamp | #qTest.db_time# |
+ | Query Performance | #res.executiontime# ms |
+
+
+
+
+ ❌ DATABASE ERROR:
+ #cfcatch.message#
+
+
+
+
+ 4. Environment Variables (Terraform Mapping)
- | Status | ✅ CONNECTED |
- | Database Name | #qTest.db_name# |
- | Connected As | #qTest.db_user# |
- | Current DB Time | #qTest.db_time# |
- | Execution Time | #res.executiontime# ms |
+
+
+ | Variable Key |
+ Value (Decoded) |
+
+
+
+
+
+
+
+ | #key# |
+ #env[key]# |
+
+
+
+
-
-
-
- ❌ CONNECTION FAILED:
- #cfcatch.message#
-
-
-
-
4. System Environment (Terraform 🟥➡️)
-
-
-
- | Variable Name |
- Value |
-
-
-
-
-
-
-
- | #key# |
- #env[key]# |
-
-
-
-
-
-
-
-
Report Date: #now()# | Managed by Terraform
\ No newline at end of file
+
+ Report Generated: #dateTimeFormat(now(), "yyyy-mm-dd HH:nn:ss")#
+
+
\ No newline at end of file