<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ActivoRicordi Captain's log</title>
	<atom:link href="http://blog.activoricordi.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.activoricordi.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 27 Dec 2009 00:57:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Learn to build a Rails app using Heroku and Git</title>
		<link>http://blog.activoricordi.com/2009/11/learn-to-build-a-rails-app-using-heroku/</link>
		<comments>http://blog.activoricordi.com/2009/11/learn-to-build-a-rails-app-using-heroku/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 13:34:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[RubyonRails]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=7</guid>
		<description><![CDATA[Hi All:
I have recently discover Heroku service for building applications. It is extremely useful and extremely easy to use. It is also based in Git a SCM system which is also revolutionazing the version control systems.
To install Git, we could use this guide located on the progit or also you can see this page which [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All:</p>
<p>I have recently discover Heroku service for building applications. It is extremely useful and extremely easy to use. It is also based in Git a SCM system which is also revolutionazing the version control systems.</p>
<p>To install Git, we could use this guide located on the progit or also you can see this <a href="http://www.nice-panorama.com/Programmation/cappuccino/Tutorial-git.html">page</a> which explains how to use textmate with git</p>
<p>We set git configuration:</p>
<pre><span>$</span> git config --global user.name <span>"Your Name"</span>
<span>$</span> git config --global user.email youremail@example.com</pre>
<p>There is a great Quickstart for using Heroku which I used as a base for this post: http://docs.heroku.com/quickstart</p>
<ul>
<li>Sign in in Heroku</li>
<li>Install Heroku gem:</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">$ sudo gem install heroku</pre></div></div>

<ul>
<li>Create the local application in your mac: rails myapp</li>
<li>Access to the rails app: cd myapp</li>
<li>Install git</li>
<li>Execute git:  <em>$ git init</em></li>
<li>Do git add:  <em>$ git add .</em></li>
<li>We access to the following command:</li>
</ul>
<ul>
<li>
<ul>
<li>Do git first commit: <code><em>$ git commit -m "new app"</em><br />
</code></li>
<li>We open the application, and we start the local server <em>ruby script/server </em>and access to localserver using <em>http://127.0.0.1:3000</em></li>
<li>As usual, we generate a index or home controller. I generally call them <strong><em>dashboard</em></strong> as it is sexy: <em>$ ruby script/generate controller dashboard index</em></li>
<li>We delete the entry page: <em><span>$ rm public/index.html</span></em></li>
<li>We modify the <span style="font-weight: bold;">config/routes.rb </span>to enter the following route map:</li>
</ul>
<ul></ul>
<ul>
<li>We create the heroku application directly on the heroku site from our computer merely using the Heroku&#8217;s gem</li>
</ul>
<ul>
<li>Now the web site will be visible on the following address: http://severe-stone-45.heroku.com. Sustitute the name by the name provided by Heroku and you got it. As the heroku repository is blank when we create the application we need to deploy the code to a specific branch, we deploy the code throuh this instruction</li>
</ul>
</li>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">$ rake db:create
db<span style="color:#006600; font-weight:bold;">/</span>development.<span style="color:#9900CC;">sqlite3</span> already exists</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">map.<span style="color:#9900CC;">connect</span> <span style="color:#996600;">':controller/:action/:id'</span>
map.<span style="color:#9900CC;">connect</span> <span style="color:#996600;">':controller/:action/:id.:format'</span>
<span style="color:#008000; font-style:italic;"># Enter the route to access to enter the dashboard</span>
 map.<span style="color:#9900CC;">root</span> <span style="color:#ff3333; font-weight:bold;">:controller</span> =<span style="color:#006600; font-weight:bold;">&amp;</span>gt; <span style="color:#996600;">&quot;dashboard&quot;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">rake db:migrate</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">heroku create
Created http:<span style="color:#006600; font-weight:bold;">//</span>severe<span style="color:#006600; font-weight:bold;">-</span>stone<span style="color:#006600; font-weight:bold;">-</span>45.<span style="color:#9900CC;">heroku</span>.<span style="color:#9900CC;">com</span><span style="color:#006600; font-weight:bold;">/</span> <span style="color:#006600; font-weight:bold;">|</span> git@heroku.<span style="color:#9900CC;">com</span>:severe<span style="color:#006600; font-weight:bold;">-</span>stone<span style="color:#006600; font-weight:bold;">-</span>45.<span style="color:#9900CC;">git</span></pre></div></div>

<p>$ git push heroku master</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2009/11/learn-to-build-a-rails-app-using-heroku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I have changed to JQuery in Rails</title>
		<link>http://blog.activoricordi.com/2009/11/i-have-changed-to-jquery-in-rails/</link>
		<comments>http://blog.activoricordi.com/2009/11/i-have-changed-to-jquery-in-rails/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 09:23:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[RubyonRails]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Rails 2.0]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/2009/11/i-have-changed-to-jquery-in-rails/</guid>
		<description><![CDATA[jQuery is today the best js library, prototype is a challenger.The reasons why I think this are beautifully illustrated on the following post. To use jQuery in rails install the following plugin:
ruby script/plugin install http://ennerchi.googlecode.com/svn/trunk/plugins/jrails
Here is a list of existing functions which are available once we replace prototype+scriptacuolous for the jquery. Hopefully, this support will [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery is today the best js library, prototype is a challenger.The reasons why I think this are beautifully illustrated on the following <a href="http://jimneath.org/2008/06/18/using-jquery-with-ruby-on-rails/">post</a>. To use jQuery in rails install the following plugin:</p>
<p>ruby script/plugin install http://ennerchi.googlecode.com/svn/trunk/plugins/jrails</p>
<p>Here is a <a href="http://justtalkaboutweb.com/2008/01/14/replace-prototype-with-jquery-on-rails/">list</a> of existing functions which are available once we replace prototype+scriptacuolous for the jquery. Hopefully, this support will improve once we approach to Rails 3.</p>
<p>If you want to use both libraries, you will keep prototype js files, if you plan to use only jquery you could removed them. I particularly think that seems you have decided to use jquery there is few reasons to keep them.</p>
<p>Also, there are two ways to use jquery, I just found this interesting article which speak about a different way to use jquery, not using jrails but instead in a more unobstrusive way. Interesting point of view.<br />
http://www.notgeeklycorrect.com/english/2009/05/18/beginners-guide-to-jquery-ruby-on-rails/</p>
<p>Kind regards and good weekend</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2009/11/i-have-changed-to-jquery-in-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jruby on Rails on SAP NetWeaver Studio</title>
		<link>http://blog.activoricordi.com/2009/08/jruby_on_rails_nwds/</link>
		<comments>http://blog.activoricordi.com/2009/08/jruby_on_rails_nwds/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 10:40:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JRuby]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[JRuby on Rails]]></category>
		<category><![CDATA[sap netweaver]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=50</guid>
		<description><![CDATA[Many of you have already heard about JRuby and its Rails implementation called JRuby on Rails, for those who do not I would recommend to read the following articles:

JRuby: The power of Java and Ruby
This article which clearly explain the basics is about JRuby.
This article from Java World gives an overview JRuby on Rails. 
Additionally, there [...]]]></description>
			<content:encoded><![CDATA[<p>Many of you have already heard about JRuby and its Rails implementation called JRuby on Rails, for those who do not I would recommend to read the following articles:</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=PfnP-8XbJao">JRuby: The power of Java and Ruby</a></li>
<li>This <a href="http://www.javaworld.com/javaworld/jw-07-2006/jw-0717-ruby.html">article</a> which clearly explain the basics is about JRuby.</li>
<li>This <a href="http://www.javaworld.com/javaworld/jw-02-2007/jw-02-jruby.html">article</a> from Java World gives an overview JRuby on Rails. </li>
<li>Additionally, there is another <a href="http://www.developer.com/lang/other/article.php/10942_3662031_2">article</a> from Developer.com which runs over the first steps on creating and deploying a JRuby on Rails application.</li>
</ul>
<p>Ok, once we are all on the same page, I am going to make a more detailed overview, on how to develop a JRuby on Rails project using SAP NetWeaver Studio. Just to mention that I am currently using version 7.1 SP6 which is built over Eclipse 3.3.0 and Java 5 Sdk.  I know it is a little bit more advanced than the most mayority of current SAP projects, which are probably using SAP NetWeaver Studio 7.0 but well, it is what I have.</p>
<p>There is an existing one-click installer from <a href="http://bitnami.org/stack/jrubystack">JRuby on Rails </a>suitable for testing for a company called bitnami, which has a very interesting market proposition. I am myself I use RubyStack with no futher problems.<br />
However, I have done manually to fully understand the development architecture. So let se which are the steps to perform:</p>
<p>1) Download JRuby: As first step, we are going to download latest version of JRuby from <a href="http://jruby.codehaus.org/">JRuby site</a>. In this case is JRuby 1.1.4, which can be download from its <a href="http://dist.codehaus.org/jruby/">repositories</a>. Select what it suits for your operating system.</p>
<p>While you wait it to download, if you like you can read something or you want watch a video related to JRuby on Rails, plese the following video:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/PfnP-8XbJao&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/PfnP-8XbJao&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowfullscreen="true"></embed></object></p>
<p>Ok, now it is already download, we have to find the file and unzip. Do not underestimate the time it takes to find the file wherever you have download it. <img src='http://blog.activoricordi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  .</p>
<p>As I always install my Jvm on the root directory of my C: drive (c:\jdk15,c:\jdk16,..) . I am going to follow the same procedure again, as it will ease the procedure of adding it to my PATH route. I do not know you but I am a little tired of adding things to my PATH, that I am not going to use so I have created a .bat file which do this for me. For more details about <a class="wp-caption" title="JRuby Getting Started" href="http://wiki.jruby.org/wiki/Getting_Started" target="_blank">how to getting started</a>. Obviously, it is designed to support my best practices, but you know today is &#8220;Convention over configuration&#8221; or DIY.</p>
<p>Prerequisites</p>
<p>JRuby 1.1.3 or higher<br />
Java 5 or higher<br />
Rails 2.0 or higher</p>
<p> Install Rails Framework &#8216;gems install rails -y&#8217; (if behind a http proxy, set HTTP_PROXY=http://${http-proxy-host}:${http-proxy-port}/)<br />
4. Install activerecord-jdbc &#8216;gems install activerecord-jdbc&#8217;<br />
5. Install database/jdbc driver (for mysql <a href="http://mysql.com/">http://mysql.com/</a>)<br />
6. Generate your Ruby on Rails application (<a href="http://rubyonrails.org/">http://rubyonrails.org/</a>)<br />
7. Modify database.yaml<br />
       development:<br />
           adapter: jdbc<br />
           driver: com.mysql.jdbc.Driver (for mysql)<br />
           url: jdbc:mysql://${database-hostname}/${db-schema}<br />
           username: ${username}<br />
           password: ${password}</p>
<p>8. Modify environment.rb by adding<br />
       require &#8216;active_record/connection_adapters/jdbc_adapter&#8217;</p>
<p>9. Download rails-integration-${version}-SNAPSHOT.jar into the WEB-INF/lib by checking out and building the rails-integration project<br />
svn://rubyforge.org/var/svn/jruby-extras/trunk/rails-integration<br />
10. Modify the template web.xml(see references below) with the right value of jruby.home<br />
11. Create a WEB-INF directory in the RoR application directory<br />
12. Copy web.xml to WEB-INF and rails-integration-${version}-SNAPSHOT.jar under WEB-INF/lib<br />
13. Jar up the RoR application directory contents as a WAR file</p>
<p>Requests to appropriate context-root of the deployed web application should invoke your Ruby code !</p>
<p>If you&#8217;d like to automate the building of a war file:<br />
Edit rails-integration/build.xml and add the following XML snippet<br />
  &lt;property environment=&#8221;env&#8221;/&gt;<br />
  &lt;target name=&#8221;build-rails-war&#8221; depends=&#8221;jar&#8221;&gt;<br />
    &lt;delete file=&#8221;${rails-app-dir}/${rails-app-name}.war&#8221;/&gt;<br />
    &lt;mkdir dir=&#8221;${rails-app-dir}/WEB-INF/lib&#8221;/&gt;<br />
    &lt;copy todir=&#8221;${rails-app-dir}/WEB-INF/lib&#8221;&gt;<br />
      &lt;fileset file=&#8221;${maven.build.directory}/${maven.build.final.name}.jar&#8221;/&gt;<br />
      &lt;fileset file=&#8221;${maven.repo.local}/org/jruby/jruby/0.9.1/jruby-0.9.1.jar&#8221;/&gt;<br />
      &lt;fileset file=&#8221;${maven.repo.local}/asm/asm/2.2.2/asm-2.2.2.jar&#8221;/&gt;<br />
      &lt;fileset file=&#8221;${maven.repo.local}/javax/activation/activation/1.1/activation-1.1.jar&#8221;/&gt;<br />
    &lt;/copy&gt;<br />
    &lt;copy todir=&#8221;${rails-app-dir}/WEB-INF/&#8221;&gt;<br />
      &lt;fileset file=&#8221;samples/scaffold/WEB-INF/web.xml&#8221;/&gt;<br />
    &lt;/copy&gt;<br />
    &lt;replace file=&#8221;${rails-app-dir}/WEB-INF/web.xml&#8221; token=&#8221;/usr/local/jruby&#8221; value=&#8221;${env.JRUBY_HOME}&#8221;/&gt;<br />
    &lt;jar jarfile=&#8221;${rails-app-dir}/${rails-app-name}.war&#8221; basedir=&#8221;${rails-app-dir}&#8221;/&gt;<br />
  &lt;/target&gt;<br />
Make sure JRUBY_HOME is set and run<br />
&#8216;ant -Drails-app-dir=${ror-app-dir} -Drails-app-name=${war-file-name} build-rails-war&#8217;<br />
${ror-app-dir}/${ror-app-name}.war should be ready for deployment !</p>
<p><code>jruby -S gem install -y rails warbler</code><br />
<code><br />
$JRUBY_HOME/bin/gem install activerecord-jdbc-adapter -y</code><br />
modify database.yml<br />
<code><br />
development:<br />
adapter: jdbc<br />
driver: com.mysql.jdbc.Driver<br />
url: jdbc:mysql://localhost/blabla_development<br />
username: root<br />
password: root<br />
</code><br />
Modify environment.rb<br />
<code><br />
require File.join(File.dirname(__FILE__), 'boot')<br />
if RUBY_PLATFORM =~ /java/<br />
require 'rubygems'<br />
RAILS_CONNECTION_ADAPTERS = %w(jdbc)<br />
end</code>I would recommend to read of <a href="http://blog.emptyway.com/">The empty Way</a><br />
<a href="http://wordpress.com/tag/jruby/">JRuby entries on Wordpress</a></p>
<p>Rails::Initializer.run do |config|</p>
<p>This article is based on the following references:</p>
<ul>
<li><a href="http://wiki.jruby.org/wiki/JRuby_on_Rails">Wiki JRuby on Rails</a></li>
<li><a href="http://luposlip.blogspot.com/2007/07/solved-jror-goldspike-netweaver.html">Solved: JRoR, GoldSpike + NetWeaver</a></li>
<li><a href="http://blog.headius.com/2006/11/advanced-rails-deployment-with-jruby.html">Advanced Rails Deployment with JRuby</a></li>
<li><a href="http://blogs.sun.com/whacko/entry/deploying_a_ruby_on_rails"></a></li>
</ul>
<p>Kind regards</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2009/08/jruby_on_rails_nwds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desarrollo de Aplicaciones Flex con FlashDevelop &#8211; Primera Parte</title>
		<link>http://blog.activoricordi.com/2009/07/desarrollo-de-aplicaciones-flex-con-flashdevelop-primera-parte/</link>
		<comments>http://blog.activoricordi.com/2009/07/desarrollo-de-aplicaciones-flex-con-flashdevelop-primera-parte/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 23:12:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[flashbuilder]]></category>
		<category><![CDATA[Flashdevelop]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[OSFlash]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=122</guid>
		<description><![CDATA[La primera parte de un tutorial que explica como realizar aplicaciones con el FlashDevelop para principiantes que no conocen el mundo Flex.]]></description>
			<content:encoded><![CDATA[<p>Buenas noches:</p>
<p>No hace mucho que descubri el entorno de desarrollo <a class="wp-caption-dd" title="flashdevelop site" href="http://flashdevelop.org" target="_blank">flashdevelop.org</a>, la verdad es aunque no he podido utilizarlo todo lo que quisiera, es bastante <a class="wp-caption-dd" title="Funcionalidades del FlashDevelop.org" href="http://miguelsantirso.es/2008/08/nueva-version-de-flashdevelop-ide-gratuito-para-programar-flash/">potente</a> y permite desarrollar comodamente en Flex sin necesidad de utilizar el FlexBuilder o FlashBuilder. Es cierto que tiene limitaciones pero en su mayoría relativas a que el Flex SDK no posee todas las librerias existentes en el FlexBuilder.</p>
<p>Instalarlo es muy sencillo y existen varios tutoriales que lo explican.  Lo que no he encontrado son tutoriales, ejemplos o artículos que lo utilicen a fondo con todas sus posibilidades. Así que he decido adentrarme yo mismo en este territorio inexplorado.</p>
<ul>
<li>Antes de nada he descargarme Flex SDK. Se trata de un fichero zip que es facil de descomprimir. En mi caso, yo lo he hecho en mi disco secundario D:\FlexSDK.</li>
<li>Se ejecuta el FlashDevelop. Se selecciona la opción</li>
</ul>
<p><strong>Crear un nuevo proyecto</strong></p>
<p>Debajo de la pestaña de proyectos recientes &#8220;Recent Projects&#8221;, existe la opción &#8220;New Project&#8221;. Esta opción nos dirige a una ventana emergente de donde se puede seleccionar el proyecto deseado. En este caso, se selecciona la opción &#8220;ActionScript 3 &gt; Flex Project&#8221;.</p>
<p>En este ejemplo especifico se introduce los siguientes valores:</p>
<ul>
<li><em>Name</em>: AddressBook</li>
<li><em>Location</em>: D:\adobeflexprojects</li>
<li><em>Package</em>: &#8211; Se deja en blanco -</li>
</ul>
<p>Automaticamente, se genera una colección de carpetas como se generarían en el caso de un proyecto utilizando FlexBuilder.</p>
<ul>
<li><em>bin</em></li>
<li><em>lib</em></li>
<li><em>src</em></li>
</ul>
<p>En nuestro caso, se desgarga este fichero (fichero), se introduce en la carpeta lib, que se encuentra en<br />
D:/</p>
<p>Se abre el fichero <em>Main.mxml</em> que se encuentra localizado en la carpeta src, al que se puede acceder desde la pestaña <em>Project</em>.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Button</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;myButton&quot;</span> <span style="color: #000066;">label</span>=<span style="color: #ff0000;">&quot;Hello&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></td></tr></table></div>

<p>Queda el siguiente codigo</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Application</span> <span style="color: #000066;">xmlns:mx</span>=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Button</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;myButton&quot;</span> <span style="color: #000066;">label</span>=<span style="color: #ff0000;">&quot;Hello&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:Application<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Una vez salvado, se pulsa sobre el botón &#8220;Test Movie&#8221;, y el SDK de Flex compila el fichero. Y si se ha cometido ningún error al copiar/pegar aparece un botón.</p>
<p>A continuación, se le añade nuevos elementos de UI,como una etiqueta o un campo donde se almacena el Nombre de Pila del contacto.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Application</span> <span style="color: #000066;">xmlns:mx</span>=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Panel</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;New AddressBook Contact&quot;</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">&quot;75%&quot;</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">&quot;75%&quot;</span> </span>
<span style="color: #009900;">        <span style="color: #000066;">paddingTop</span>=<span style="color: #ff0000;">&quot;10&quot;</span> <span style="color: #000066;">paddingLeft</span>=<span style="color: #ff0000;">&quot;10&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Label</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;fNameLabel&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;FirstName.&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:TextInput</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;fName&quot;</span> <span style="color: #000066;">text</span>=<span style="color: #ff0000;">&quot;Enter First Name&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:Button</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;myButton&quot;</span> <span style="color: #000066;">label</span>=<span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:Panel<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:Application<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Se ha introducido elementos nuevos</p>
<ul>
<li>Label</li>
<li>TextInput</li>
</ul>
<p>Tambien puedo introducir campos múltiples, como este campo lista que me va a permitir seleccionar el tratamiento del individuo:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:List<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> 
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:dataProvider<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:String<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Mr.<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:String<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:String<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Ms.<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:String<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;mx:String<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>Miss<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:String<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:dataProvider<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/mx:List<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Esto es solo el comienzo para abrir boca,en los siguientes capitulos se comenzará de una manera más organizada entendiendo cual debe ser la organización de un desarrollo, como se organiza un formulario y como se puede dar estilos a la aplicación.</p>
<p>Un saludo</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2009/07/desarrollo-de-aplicaciones-flex-con-flashdevelop-primera-parte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PUROMAC Madrid Event</title>
		<link>http://blog.activoricordi.com/2008/12/puromac-madrid-event/</link>
		<comments>http://blog.activoricordi.com/2008/12/puromac-madrid-event/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 02:31:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[puromac]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=119</guid>
		<description><![CDATA[Buenas noches:

Hoy he asistido al evento de Puromac en Madrid, con unos cuantos fieles, la verdad es que la cosa ha resultado de lo más divertido. Una reunión para conocerse y hablar del mundo MAC , del MacOSx y del iphone. ]]></description>
			<content:encoded><![CDATA[<p>Buenas noches:</p>
<p>Hoy he asistido al evento de Puromac en Madrid, con unos cuantos fieles, la verdad es que la cosa ha resultado de lo más divertido. Una reunión para conocerse y hablar del mundo MAC , del MacOSx y del iphone.</p>
<p>Me han quedado cosas claras a resultado de esta reunión, el MAC no es un ordenador elitista pero si para la elites intelectuales, para aquellos que no les gusta conducir pero si utilizar una gran ordenador. No esta pensado ni por precio ni por características para el gran publico, sino para una pequeña gran minoria que si bien quiza no tenga un alto poder adquisitivo si tiene capacidad de distinguir productos de mayor calidad.</p>
<p>Lo que me hace pensar como pueden los desarrolladores sacar partido a esta posibilidades, de momento no lo sé, alguna idea?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2008/12/puromac-madrid-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conferencia Rails 2008</title>
		<link>http://blog.activoricordi.com/2008/11/conferencia-rails-2008/</link>
		<comments>http://blog.activoricordi.com/2008/11/conferencia-rails-2008/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 17:42:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[RubyonRails]]></category>
		<category><![CDATA[conferenciarails2008]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=110</guid>
		<description><![CDATA[Un más ActivoRicordi ha estado en la conferencia Rails española. Un año más esta siendo una gran experiencia, un año más el software es la excusa para juntar gente brillante sobre un mismo techo y compartir que se esta haciendo cosas muy interesantes en este país relativos a la innovación.
Muy lentamente se esta generando un [...]]]></description>
			<content:encoded><![CDATA[<p>Un más ActivoRicordi ha estado en la conferencia Rails española. Un año más esta siendo una gran experiencia, un año más el software es la excusa para juntar gente brillante sobre un mismo techo y compartir que se esta haciendo cosas muy interesantes en este país relativos a la innovación.</p>
<p>Muy lentamente se esta generando un tejido empresarial de innovación y productividad a través de la technologia &#8220;Ruby on Rails&#8221; y a su alreador. Una technologia que es la excusa para lanzar iniciativas con muchos puntos comunes</p>
<p><strong>Colaboración y comunidad</strong>: Las aplicaciones son esfuerzos colaborativos de un grupo de personas buscando situaciones win-win.</p>
<p><strong>Usabilidad</strong> : Simplicidad de uso en las interfases, flexibilidad o más bien adaptación a los usuarios.</p>
<p><strong>Productividad</strong>: Crear desarrollo productivos, competir con inversiones pequeñas con los jugadores más grandes</p>
<p><strong>Software como servicio o con servicios añadidos</strong>: El software se convierte en algo más que una licencia, es la excusa para proporcionar un servicio al usuario, flexible, agil y adaptado a sus necesidades.</p>
<p><strong>Estandarización</strong>: Enlazado con la colaboración, utilización de estandares.</p>
<p><strong>Escalabilidad</strong>: La infrastructura no debe convertirse en una limitación a las ideas y a los proyectos.</p>
<p>Sin embargo, considero que este será uno de los años claves para Framework, por un lado empiezan a aparecer competidores en el mercado como Merb que ganan adeptos, y por otro la crisis obliga a muchos proyectos a darse una dosis de realidad.</p>
<p>Aunque existen casos de exitos muy interesantes, me ha sorprendido mucho saber que &#8220;La Razon&#8221; corre sobre Rails, y si sigue a este ritmo &#8220;La Coctelera&#8221; pronto será conocida como &#8220;La Incubadora&#8221; : UVLog, iwannagothere.com , estos tipos no paran de crear propuestas nuevas.</p>
<p>Cierro aquí para asistir a la Keynote de &#8220;Obie Fernandez&#8221;.</p>
<p>Hasta el proximo año!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2008/11/conferencia-rails-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Windows Articles</title>
		<link>http://blog.activoricordi.com/2008/10/ruby-on-windows-articles/</link>
		<comments>http://blog.activoricordi.com/2008/10/ruby-on-windows-articles/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 08:45:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[wxruby ruby]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=106</guid>
		<description><![CDATA[Hi All:

Not very recently ago, I found this great site about how to automate our main and basic tasks on Windows using Ruby called Ruby on Windows

. Being a lifetime ruby beginner, I found that maybe I could use this for my windows daily task and meanwhile learn a little bit more of Ruby.

Specially I like the articles about wxruby as sometimes I feel in the need or creating my own GUI for some of the tasks I and doing. Since I have no interest in program with Visual Basic .Net, as I feel a huge industrial development environment is not suit for my specific need, I feel wxruby is suitable tool for me.

Kind regards]]></description>
			<content:encoded><![CDATA[<p>Hi All:</p>
<p>Not very recently ago, I found this great site about how to automate our main and basic tasks on Windows using Ruby called <a class="wp-caption" title="Ruby on Windows OS" href="http://rubyonwindows.blogspot.com/" target="_blank">Ruby on Windows</a></p>
<p>. Being a lifetime ruby beginner, I found that maybe I could use this for my windows daily task and meanwhile learn a little bit more of Ruby.</p>
<p>Apart from the Winsows Office articles (main objective of the research), I specially like the articles about wxruby as sometimes I feel in the need or creating my own GUI for some of the tasks I and doing. Since I have no interest in program with Visual Basic .Net, as I feel a huge industrial development environment is not suit for my specific need, I feel wxruby is suitable tool for me.</p>
<p>Kind regards</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2008/10/ruby-on-windows-articles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>QRCodes: First glimpse</title>
		<link>http://blog.activoricordi.com/2008/09/qrcodes-first-glimpse/</link>
		<comments>http://blog.activoricordi.com/2008/09/qrcodes-first-glimpse/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 10:15:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[Emerging Technologies]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[QRCodes]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=88</guid>
		<description><![CDATA[A brief description of what are QRCodes and how to read them from your favorite mobile phone Nokia, iPhone, etc.]]></description>
			<content:encoded><![CDATA[<p>I discovered QRCodes at <a class="wp-caption" href="http://11870.com/" target="_blank">11870.com</a> where they are using them on a Marketing Campaign. There is nice article in <a class="wp-caption" href="http://www.fragalia.com/xarxa/qrcode_es.php">Spanish</a> which explains what they are.Also there is another post from a <a class="wp-caption" title="QR Codes para moviles" href="http://www.somms.net/2007/12/14/qr-codes-para-moviles" target="_blank">spanish blog</a> which relates first introduction of an occidental guys to it.</p>
<p>For your benefit, I include its automatic translations to English</p>
<ul>
<li><a class="wp-caption" title="QR Codes para moviles" href="http://translate.google.es/translate?u=http%3A%2F%2Fwww.somms.net%2F2007%2F12%2F14%2Fqr-codes-para-moviles&amp;sl=es&amp;tl=en&amp;hl=es&amp;ie=UTF-8" target="_blank">QR Codes for mobiles</a></li>
<li> <a class="wp-caption" title="What are QRCodes?" href="http://translate.google.es/translate?u=http%3A%2F%2Fwww.fragalia.com%2Fxarxa%2Fqrcode_es.php&amp;sl=es&amp;tl=en&amp;hl=es&amp;ie=UTF-8" target="_blank">What are QRCodes?</a></li>
</ul>
<p>For our non-Spanish readers I will do a summary:</p>
<p>From 2000 at Japan all magazines and products have started to use QRCode, a version of the two-dimensional code bar for Kanji characters, which is readable with the use of a mobile camera: Simply making a photo is enough for saving the information inside of the mobile device.Companies like McDonalds use them to inform about ingredients or nutritional facts, or MoviStar offering discounts. At Barcelona, they are using them for providing tourist information on the sightseeing points to Japanese tourists.<br />
It is a technology designed for the warehourse but it is mainly target now a mass-consumer products.</p>
<p><strong>How to read a QRCode?</strong></p>
<p>Reading software is available for many mobile manufacturers such as <a class="wp-caption" href="http://mobilecodes.nokia.com/index.htm%20" target="_blank">Nokia</a> or from companies specialized in this technologies such as <a class="wp-caption" href="http://www.i-nigma.com" target="_blank">i-Nigma</a> or <a class="wp-caption" href="http://reader.kaywa.com" target="_blank">Kaywa</a>. Nokia provide a <a class="wp-caption" href="http://mobilecodes.nokia.com/scan.htm" target="_blank">page</a> which explain which readers are compatible with each of its phones and which phones have Nokia barcode reader already preinstalled on your device.<br />
This page provide very good information about the applications which support the most common <a class="wp-caption" href="http://reader.kaywa.com/phones" target="_blank">phones</a>.</p>
<p>For iphone users, there is a open source project which provide a reader <a class="wp-caption" href="http://code.google.com/p/iphone-qrcode/" target="_blank">application called QRDecode</a>, obviously it is only available for hijacked phones on version 1.x, and for 2.x users. Unfortunately, I am not aware. Please, comments welcome. There is a page which explains how to install it with the installer.</p>
<p>There is also another application called <a class="wp-caption" href="http://www.imatrix.lt/Default.aspx?page=start" target="_blank">2D Sense Platform</a> which seems a commercial application which support not only QRCodes but also traditional <a class="wp-caption" href="http://en.wikipedia.org/wiki/Data_Matrix" target="_blank">DataMatrix</a> codes.</p>
<p><span style="font-weight: bold;"><br />
How to produce a QRCode?</span></p>
<p>Nokia has a page where you can produce through a <a class="wp-caption" href="http://mobilecodes.nokia.com/create.jsp?terms=accepted" target="_blank">web application</a> which can help to play around a little bit in order to understand all the possibilities.</p>
<p>The first thing we notice is that Nokia recommends us not to exceed 60 characters of text, as mobile code starts getting too complex for camera phones to handle.<br />
<a href="http://qrcode.kaywa.com/" target="_blank">Kaywa</a> has also its own application to create this QRCodes from URL, Texts, Phone Number and SMS.</p>
<p>Well, folks that is enough for today. Next chapter we will see how to create programmatically QRCode from XML through J2EE or Ruby on Rails.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2008/09/qrcodes-first-glimpse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorials in Routing in Rails 2.0</title>
		<link>http://blog.activoricordi.com/2008/08/tutorials-in-routing-in-rails-20/</link>
		<comments>http://blog.activoricordi.com/2008/08/tutorials-in-routing-in-rails-20/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 02:02:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Routes.rb]]></category>
		<category><![CDATA[RubyonRails]]></category>
		<category><![CDATA[Rails 2.0]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=70</guid>
		<description><![CDATA[Hi All:
I try to be fresh and publish new material, but sometimes when someone do something with excellence we only need to praise his work.
Here a set of nice articles for explaining what it is routing in Rails from Daryn Holmes. !!Excellent Work!!
Part 1 Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All:</p>
<p>I try to be fresh and publish new material, but sometimes when someone do something with excellence we only need to praise his work.</p>
<p>Here a set of nice articles for explaining what it is routing in Rails from <a class="wp-caption" title="Daryn Holmes Blog" href="http://darynholmes.wordpress.com" target="_blank">Daryn Holmes</a>. !!Excellent Work!!</p>
<p><a class="wp-caption" title="Beginners tutorial routing in Rails 2.0 with rest" href="http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/" target="_blank">Part 1 </a><a title="Permanent Link: Beginners Tutorial: Routing in Rails 2.0 (with REST) - Part 1 of n" rel="bookmark" href="http://darynholmes.wordpress.com/2008/03/15/beginners-tutorial-routing-in-rails-20-with-rest-part-1-of-n/">Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 1 of n</a></p>
<p><a class="wp-caption" title="Beginners tutorial routing in Rails 2.0 with rest" href="http://darynholmes.wordpress.com/2008/03/25/beginners-tutorial-routing-in-rails-20-with-rest-part-2-of-n/" target="_blank">Part 2 </a><a title="Permanent Link: Beginners Tutorial: Routing in Rails 2.0 (with REST) - Part 2 of n" rel="bookmark" href="http://darynholmes.wordpress.com/2008/03/25/beginners-tutorial-routing-in-rails-20-with-rest-part-2-of-n/">Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 2 of n</a></p>
<p><a class="wp-caption" title="Beginners tutorial routing in Rails 2.0 with rest" href="http://darynholmes.wordpress.com/2008/04/27/beginners-tutorial-routing-in-rails-20-with-rest-part-3-of-n/" target="_blank">Part 3 </a><a title="Permanent Link: Beginners Tutorial: Routing in Rails 2.0 (with REST) - Part 3 of n" rel="bookmark" href="http://darynholmes.wordpress.com/2008/04/27/beginners-tutorial-routing-in-rails-20-with-rest-part-3-of-n/">Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 3 of n</a></p>
<p><a class="wp-caption" title="Beginners tutorial routing in Rails 2.0 with rest" href="http://darynholmes.wordpress.com/2008/05/11/beginners-tutorial-routing-in-rails-20-with-rest-part-4-of-n/" target="_blank">Part 4</a> <a title="Permanent Link: Beginners Tutorial: Routing in Rails 2.0 (with REST) - Part 4 of n" rel="bookmark" href="http://darynholmes.wordpress.com/2008/05/11/beginners-tutorial-routing-in-rails-20-with-rest-part-4-of-n/">Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 4 of n</a></p>
<p><a class="wp-caption" title="Beginners tutorial routing in Rails 2.0 with rest" href="http://darynholmes.wordpress.com/2008/05/26/beginners-tutorial-routing-in-rails-20-with-rest-part-5-of-n/" target="_blank">Part 5</a> <a title="Permanent Link: Beginners Tutorial: Routing in Rails 2.0 (with REST) - Part 5 of n" rel="bookmark" href="http://darynholmes.wordpress.com/2008/05/26/beginners-tutorial-routing-in-rails-20-with-rest-part-5-of-n/">Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 5 of n</a></p>
<p><a class="wp-caption" title="Beginners tutorial routing in Rails 2.0 with rest" href="Beginners Tutorial: Routing in Rails 2.0 (with REST) - Part 6 of n" target="_blank">Part 6</a> <a title="Permanent Link: Beginners Tutorial: Routing in Rails 2.0 (with REST) - Part 6 of n" rel="bookmark" href="http://darynholmes.wordpress.com/2008/07/06/beginners-tutorial-routing-in-rails-20-with-rest-part-6-of-n/">Beginners Tutorial: Routing in Rails 2.0 (with REST) &#8211; Part 6 of n</a></p>
<p>Kind regards</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2008/08/tutorials-in-routing-in-rails-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing Java with SAP MaxDB Database &#8211; Part 1</title>
		<link>http://blog.activoricordi.com/2008/08/developing-java-with-sap-maxdb-database-part-1/</link>
		<comments>http://blog.activoricordi.com/2008/08/developing-java-with-sap-maxdb-database-part-1/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 23:58:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[sap maxdb]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java Development]]></category>
		<category><![CDATA[maxdb]]></category>

		<guid isPermaLink="false">http://blog.activoricordi.com/?p=43</guid>
		<description><![CDATA[SAP MaxDB is a relational database that provides functions for creating, using, and managing databases and the software comprises the database kernel, tools, and interfaces.

SAP MaxDB has its own JDBC Driver which we can used to execute SQL statements with Java. It is a JDBC 2.0, that you can find on the following location of [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>SAP MaxDB is a relational database that provides functions for creating, using, and managing databases and the software comprises the database kernel, tools, and interfaces.
</p></blockquote>
<p>SAP MaxDB has its own JDBC Driver which we can used to execute SQL statements with Java. It is a JDBC 2.0, that you can find on the following location of the installed MaxDB JDBC driver file at:<br />
<code><independent_program_path>\runtime\jar\sapdbc.jar</code> . For instance, when I installed on my local machine I did it on the following location:<br />
<code>D:\sapdb\programs\runtime\jar</code><br />
The java class for the JDBC drive is the <i>com.sap.dbtech.jdbc.DriverSapDB</i></p>
<p>Well, that enough for today. On the next<br />
Kind regards</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.activoricordi.com/2008/08/developing-java-with-sap-maxdb-database-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
