How to setup Ruby and new Oracle Instant Client on Leopard
http://blog.rayapps.com/2008/04/24/how-to-setup-ruby-and-new-oracle-instant-client-on-leopard/ ul>li*>a[href='$#']{$#}- http://blog.rayapps.com/2008/04/24/how-to-setup-ruby-and-new-oracle-instant-client-on-leopard/
- http://blog.rayapps.com/2009/09/06/how-to-setup-ruby-and-oracle-instant-client-on-snow-leopard/
Get Oracle Instant Client working on Mac. Then get it working with Ruby!
export DYLD_LIBRARY_PATH="/usr/local/oracle/instantclient_10_2" export SQLPATH="/usr/local/oracle/instantclient_10_2" export TNS_ADMIN="/usr/local/oracle/network/admin" export NLS_LANG="AMERICAN_AMERICA.UTF8" export PATH=$PATH:$DYLD_LIBRARY_PATH
RubyForge: ruby-oci8: Project Filelist
http://rubyforge.org/frs/?group_id=256Download Ruby OCI8.
Tnsnames.ora - Oracle FAQ
http://www.orafaq.com/wiki/Tnsnames.oraSERVICE_NAME is the same thing as SID?
ORA11 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = ORA11) ) )
Another example
connection_label = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = server.name.org)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = service.name) ) )
Class: OCI8 - Documentation by YARD 0.7.5
http://ruby-oci8.rubyforge.org/en/OCI8.htmlDocumentation for OCI8. What are the parameters for the constructor again?
- (OCI8) initialize(username, password, dbname = nil, privilege = nil) constructor
Instant Client downloads for Mac OS X (Intel x86)
http://www.oracle.com/technetwork/topics/intel-macsoft-096467.htmlYou need a username/password to get access to these, but it's no big deal.
- http://download.oracle.com/otn/mac/instantclient/11203/instantclient-basic-macos.x64-11.2.0.3.0.zip
- http://download.oracle.com/otn/mac/instantclient/11203/instantclient-sqlplus-macos.x64-11.2.0.3.0.zip
- http://download.oracle.com/otn/mac/instantclient/11203/instantclient-sdk-macos.x64-11.2.0.3.0.zip
It might also be handy to have Oracle JDBC drivers around as well.
Markdown - Wikipedia, the free encyclopedia
http://en.wikipedia.org/wiki/MarkdownI finally checked out how to add markdown for SO (Stack Overflow) entries.
Text attributes *Italic*
, **bold**
, `monospace`
.
<p>Text attributes <em>Italic</em>, <strong>bold</strong>, <code>monospace</code>.</p>
Bash - Manipulating Strings - Substring Extraction
http://tldp.org/LDP/abs/html/string-manipulation.htmlExtracts $length
characters of substring from $string
at $position
.
${string:position:length} echo ${stringZ:0} # abcABC123ABCabc echo ${stringZ:1} # bcABC123ABCabc echo ${stringZ:7} # 23ABCabc echo ${stringZ:7:3} # 23A # Three characters of substring.
Apache CXF -- FAQ
http://cxf.apache.org/faq.html#FAQ-HowcanIturnonschemavalidationforjaxwsendpoint%3FIt appears there is a configuration setting that can be used to have Apache CXF handle validation. It also appears that this will not be a turn-key solution for me. Something is not quite right as it seems CXF doesn't have access to the XSD files, even though they are included in the class path.
No comments:
Post a Comment