Created
March 27, 2012 12:53
-
-
Save dpobel/2215556 to your computer and use it in GitHub Desktop.
Decimal test in Oracle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $db = eZDB::instance(); | |
| $cli = eZCLI::instance(); | |
| $cli->output( 'DBCharset ' . $db->Charset ); | |
| $cli->output( 'NLS_NUMERIC_CHARACTERS in nls_session_parameters' ); | |
| $cli->output( print_r( $db->arrayQuery( "select * from nls_session_parameters where parameter='NLS_NUMERIC_CHARACTERS'" ), true ) ); | |
| $cli->output( 'NLS_NUMERIC_CHARACTERS in nls_database_parameters' ); | |
| $cli->output( print_r( $db->arrayQuery( "select * from nls_database_parameters where parameter='NLS_NUMERIC_CHARACTERS'" ), true ) ); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment