Skip to content

Instantly share code, notes, and snippets.

@modius
Created November 9, 2013 12:19
Show Gist options
  • Save modius/7384877 to your computer and use it in GitHub Desktop.
Save modius/7384877 to your computer and use it in GitHub Desktop.
<cfdump var="#application#" top="1" />
<cfflush />
<cfdump var="#server#" />
<cfflush />
<cfquery datasource="daemon" name="info" result="stinfo">
SELECT 1
</cfquery>
<cfdump var="#stinfo#" />
<cfflush />
<cfdbinfo type="version" datasource="daemon" name="dbinfo">
<cfdump var="#dbinfo#" />
<cfflush />
<cfquery datasource="daemon" name="info" result="stinfo">
SELECT distinct(locale) as locale
from dmProfile
</cfquery>
<cfdump var="#stinfo#" />
<cfflush />
<cfset stJava = CreateObject("java", "java.lang.System").getProperties()>
<cfdump var="#stJava#" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment