How can I read the default application.datasource from my code?

A dump of application does not show me the datasource, and trying to read application.datasource gives an error.

link|improve this question

67% accept rate
feedback

3 Answers

up vote 5 down vote accepted

Try dumping application.getApplicationSettings()

link|improve this answer
feedback

Try re-start the applciation. You can't just dump application and see the datasource. But if you have this set in application.cfc it "should" be working.

component output="false" { this.name = "MyDemo"; this.datasource = "DemoDB"; }

Edit: Nice Tony I didn't know that.

link|improve this answer
feedback

The this scope in the Application.cfc only persists for the duration of the onApplicationStart(), onSessionStart() onRequestStart() etc.

If you want to expose variables, in your onApplicationStart(), simply store the in the application scope.

application.myVariable = myVariable;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.