<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Axel Developer</title>
	<atom:link href="http://macnamara.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://macnamara.wordpress.com</link>
	<description>Desenvolvimento de Sistemas websites &#38; Desktop</description>
	<lastBuildDate>Wed, 15 Jun 2011 14:13:52 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='macnamara.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a0564e9238aee561caebb98b01e2db8f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Axel Developer</title>
		<link>http://macnamara.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://macnamara.wordpress.com/osd.xml" title="Axel Developer" />
	<atom:link rel='hub' href='http://macnamara.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Você usa Statement ou PreparedStatement?</title>
		<link>http://macnamara.wordpress.com/2010/04/14/voce-usa-statement-ou-preparedstatement/</link>
		<comments>http://macnamara.wordpress.com/2010/04/14/voce-usa-statement-ou-preparedstatement/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 17:16:05 +0000</pubDate>
		<dc:creator>Axel Alexander</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://macnamara.wordpress.com/?p=67</guid>
		<description><![CDATA[Um belo dia fui fazer um teste em uma empresa na qual utilizavão o java com linhuagen de desenvolvimento depois do teste recebi um e-mail e persebi que ainda falta-me muito para chegar a em considerar programador java ma uma dos quesito me chamou muito a atenção - Quando for implementar algo utilizando JDBC puro, <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macnamara.wordpress.com&amp;blog=7645566&amp;post=67&amp;subd=macnamara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://macnamara.wordpress.com/2010/04/14/voce-usa-statement-ou-preparedstatement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dff406d6e4726a0cb6155d3780b6d67?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Axel</media:title>
		</media:content>
	</item>
		<item>
		<title>Zerar campo Identity no SQL Server</title>
		<link>http://macnamara.wordpress.com/2010/04/08/zerar-campo-identity-no-sql-server/</link>
		<comments>http://macnamara.wordpress.com/2010/04/08/zerar-campo-identity-no-sql-server/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 13:00:03 +0000</pubDate>
		<dc:creator>Axel Alexander</dc:creator>
				<category><![CDATA[Banco de Dados]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://macnamara.wordpress.com/?p=65</guid>
		<description><![CDATA[Se você precisa zerar um campo tipo identity no SQL Server, é possivel fazer isso usando o comando DBCC CHECKIDENT. Existem três formas de usar este comando que são: 1. DBCC CHECKIDENT (NomeTabela, NORESEED) Simplesmente será retornado o valor atual do campo identity 2. DBCC CHECKIDENT (NomeTabela) Será retornado o valor atual do campo identity <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macnamara.wordpress.com&amp;blog=7645566&amp;post=65&amp;subd=macnamara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://macnamara.wordpress.com/2010/04/08/zerar-campo-identity-no-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dff406d6e4726a0cb6155d3780b6d67?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Axel</media:title>
		</media:content>
	</item>
		<item>
		<title>Diferenças em @@IDENTITY, SCOPE_IDENTITY e IDENT_CURRENT</title>
		<link>http://macnamara.wordpress.com/2010/04/08/diferencas-em-identity-scope_identity-e-ident_current/</link>
		<comments>http://macnamara.wordpress.com/2010/04/08/diferencas-em-identity-scope_identity-e-ident_current/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:28:05 +0000</pubDate>
		<dc:creator>Axel Alexander</dc:creator>
				<category><![CDATA[Banco de Dados]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://macnamara.wordpress.com/?p=58</guid>
		<description><![CDATA[@@IDENTITY, SCOPE_IDENTITY() e IDENT_CURRENT() são funções similares onde retornam o último valor inserido sobre a coluna IDENTITY de uma tabela. Porém, é preciso ficar atento pois dependendo do escopo e da sessão onde são chamadas, podem retornar valores diferentes do esperado. USE MAQUINA GO CREATE TABLE ATABELA1( TB_id  int IDENTITY(1,1)PRIMARY KEY, TB_NOME varchar(20) NOT NULL) <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macnamara.wordpress.com&amp;blog=7645566&amp;post=58&amp;subd=macnamara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://macnamara.wordpress.com/2010/04/08/diferencas-em-identity-scope_identity-e-ident_current/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dff406d6e4726a0cb6155d3780b6d67?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Axel</media:title>
		</media:content>
	</item>
		<item>
		<title>O uso de stored procedures em Mysql</title>
		<link>http://macnamara.wordpress.com/2010/04/07/o-uso-de-stored-procedures-em-mysql/</link>
		<comments>http://macnamara.wordpress.com/2010/04/07/o-uso-de-stored-procedures-em-mysql/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 19:38:25 +0000</pubDate>
		<dc:creator>Axel Alexander</dc:creator>
				<category><![CDATA[Banco de Dados]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://macnamara.wordpress.com/?p=48</guid>
		<description><![CDATA[A maior vantagem do uso de stored procedures é a redução de tráfico na rede. Já que as stored procedures são executadas pelo SGDB na máquina servidora de banco de dados,Stored procedures aumentam a performance de outra forma também. Você pode utilizar querys para fazer muitas das coisas que podem ser feitas com stored procedures <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macnamara.wordpress.com&amp;blog=7645566&amp;post=48&amp;subd=macnamara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://macnamara.wordpress.com/2010/04/07/o-uso-de-stored-procedures-em-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dff406d6e4726a0cb6155d3780b6d67?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Axel</media:title>
		</media:content>
	</item>
		<item>
		<title>JavaScript &#8211; Controladores de eventos</title>
		<link>http://macnamara.wordpress.com/2010/04/07/javascript-controladores-de-eventos/</link>
		<comments>http://macnamara.wordpress.com/2010/04/07/javascript-controladores-de-eventos/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 15:27:15 +0000</pubDate>
		<dc:creator>Axel Alexander</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://macnamara.wordpress.com/?p=45</guid>
		<description><![CDATA[onAbort Executa um código JavaScript quando o usuário interrompe o carregamento de uma imagem, por exemplo, com um clique no botão Parar. Deve ser usado com o objeto imagem (IMG) de HTML. Exemplo: &#60;IMG NAME=&#8221;foto&#8221; SRC=&#8221;minha_foto.gif&#8221; onAbort=&#8221;alert(&#8216;Você não viu minha foto&#8217;)&#8221;&#62; onBlur Executa um código JavaScript quando um elemento, janela ou quadro, perde o foco. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=macnamara.wordpress.com&amp;blog=7645566&amp;post=45&amp;subd=macnamara&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://macnamara.wordpress.com/2010/04/07/javascript-controladores-de-eventos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3dff406d6e4726a0cb6155d3780b6d67?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Axel</media:title>
		</media:content>
	</item>
	</channel>
</rss>
