<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>Continuous Database Intergation .NET</title><link>http://www.codeplex.com/databaseupdater/Project/ProjectRss.aspx</link><description>Database Updater is .NET application that helps you manage database updates and can be easily integrated with Cruise Control .NET.</description><item><title>RELEASED: DatabaseUpdater-1.0 (Mar 22, 2008)</title><link>http://www.codeplex.com/databaseupdater/Release/ProjectReleases.aspx?ReleaseId=11894</link><description>The first version.</description><author></author><pubDate>Sat, 22 Mar 2008 00:44:21 GMT</pubDate><guid isPermaLink="false">RELEASED: DatabaseUpdater-1.0 (Mar 22, 2008) 20080322124421A</guid></item><item><title>UPDATED RELEASE: DatabaseUpdater-1.0 (мар 22, 2008)</title><link>http://www.codeplex.com/databaseupdater/Release/ProjectReleases.aspx?ReleaseId=11894</link><description>The first version.</description><author></author><pubDate>Sat, 22 Mar 2008 00:44:21 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: DatabaseUpdater-1.0 (мар 22, 2008) 20080322124421A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
Database Updater is .NET application that helps you manage database updates and can be easily integrated with Cruise Control .NET.
&lt;br /&gt; &lt;br /&gt;For example,&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;project name=&amp;quot;ProjectName&amp;quot;&amp;gt;
  ..
  &amp;lt;sourcecontrol type=&amp;quot;svn&amp;quot;&amp;gt;
  ...
  &amp;lt;/sourcecontrol&amp;gt;
  &amp;lt;tasks&amp;gt;
    &amp;lt;exec&amp;gt;
      &amp;lt;executable&amp;gt;DatabaseUpdater.exe&amp;lt;/executable&amp;gt;	
        &amp;lt;baseDirectory&amp;gt;[path to DatabaseUpdater installation folder]&amp;lt;/baseDirectory&amp;gt;
        &amp;lt;buildArgs&amp;gt;-update&amp;lt;/buildArgs&amp;gt;
        &amp;lt;buildTimeoutSeconds&amp;gt;360&amp;lt;/buildTimeoutSeconds&amp;gt;
        &amp;lt;successExitCodes&amp;gt;0&amp;lt;/successExitCodes&amp;gt;
    &amp;lt;/exec&amp;gt;
    &amp;lt;nant&amp;gt;
    ...
    &amp;lt;/nant&amp;gt;
  &amp;lt;/tasks&amp;gt;
&amp;lt;/project&amp;gt;
&lt;/pre&gt; &lt;br /&gt;As you can see I specified only &amp;quot;0&amp;quot; as a success exit code. If Database Updater cannot execute one of the update scripts it will return exit code &amp;quot;2&amp;quot; and CCNET will stop deployment before the project will be compiled and published on the web.&lt;br /&gt; &lt;br /&gt;To start using Database Updater you need to setup the database which means create a database schema and add information about the scripts that you probably already installed manually. Do not worry, Database Updater will do it for you. Just make a command:&lt;br /&gt; &lt;br /&gt;&lt;span class="codeInline"&gt; DatabaseUpdater -setup -no_execute &lt;/span&gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;-setup&amp;quot; means adding database schema that needs Database Updater to work with database and &amp;quot;-no_execute&amp;quot; means add all scripts that you have without actually executing them.&lt;br /&gt; &lt;br /&gt;But before this let's edit Database Updater configuration file - DatabaseUpdater.exe.config. Two things you should be considered - path to folder where you store update scripts (somewhere in the source control imported project folder) and connection string to the database.&lt;br /&gt; &lt;br /&gt;After setupping Database Updater you can ask it to update the database by this command:&lt;br /&gt; &lt;br /&gt;&lt;span class="codeInline"&gt; DatabaseUpdater -update &lt;/span&gt;&lt;br /&gt; &lt;br /&gt;Or add Executable task in CCNET like I described above. The latest version of Database Updater with sources you can find here (release version placed in /bin/release folder inside the archive). Please notice also that Database Updater works with any database that .NET Framework supports. Enjoy the coding and let continuous integration do the other stuff!&lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:41:47 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080322124147A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
Database Updater is .NET application that helps you manage database updates and can be easily integrated with Cruise Control .NET.
&lt;br /&gt; &lt;br /&gt;For example,&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;project name=&amp;quot;ProjectName&amp;quot;&amp;gt;
  ..
  &amp;lt;sourcecontrol type=&amp;quot;svn&amp;quot;&amp;gt;
  ...
  &amp;lt;/sourcecontrol&amp;gt;
  &amp;lt;tasks&amp;gt;
    &amp;lt;exec&amp;gt;
      &amp;lt;executable&amp;gt;DatabaseUpdater.exe&amp;lt;/executable&amp;gt;	
        &amp;lt;baseDirectory&amp;gt;[path to DatabaseUpdater installation folder]&amp;lt;/baseDirectory&amp;gt;
        &amp;lt;buildArgs&amp;gt;-update&amp;lt;/buildArgs&amp;gt;
        &amp;lt;buildTimeoutSeconds&amp;gt;360&amp;lt;/buildTimeoutSeconds&amp;gt;
        &amp;lt;successExitCodes&amp;gt;0&amp;lt;/successExitCodes&amp;gt;
    &amp;lt;/exec&amp;gt;
    &amp;lt;nant&amp;gt;
    ...
    &amp;lt;/nant&amp;gt;
  &amp;lt;/tasks&amp;gt;
&amp;lt;/project&amp;gt;
&lt;/pre&gt; &lt;br /&gt;As you can see I specified only &amp;quot;0&amp;quot; as a success exit code. If Database Updater cannot execute one of the update scripts it will return exit code &amp;quot;2&amp;quot; and CCNET will stop deployment before the project will be compiled and published on the web.&lt;br /&gt; &lt;br /&gt;To start using Database Updater you need to setup the database which means create a database table &lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=dbo&amp;amp;referringTitle=Home"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=DatabaseUpdates&amp;amp;referringTitle=Home"&gt;DatabaseUpdates&lt;/a&gt; that I described above and add information about the scripts that you probably already installed manually. Do not worry, Database Updater will do it for you. Just make a command:&lt;br /&gt; &lt;br /&gt;&lt;span class="codeInline"&gt;DatabaseUpdater -setup -no_execute&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;-setup&amp;quot; means adding database schema that needs Database Updater to work with database and &amp;quot;-no_execute&amp;quot; means add all scripts that you have without actually executing them.&lt;br /&gt; &lt;br /&gt;But before this let's edit Database Updater configuration file - DatabaseUpdater.exe.config. Two things you should be considered - path to folder where you store update scripts (somewhere in the source control imported project folder) and connection string to the database.&lt;br /&gt; &lt;br /&gt;After setupping Database Updater you can ask it to update the database by this command:&lt;br /&gt; &lt;br /&gt;&lt;span class="codeInline"&gt;DatabaseUpdater -update&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;Or add Executable task in CCNET like I described above. The latest version of Database Updater with sources you can find here (release version placed in /bin/release folder inside the archive). Please notice also that Database Updater works with any database that .NET Framework supports. Enjoy the coding and let continuous integration do the other stuff!&lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:40:15 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080322124015A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
Database Updater is .NET application that helps you manage database updates and can be easily integrated with Cruise Control .NET.
&lt;br /&gt; &lt;br /&gt;For example,&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;project name=&amp;quot;ProjectName&amp;quot;&amp;gt;
  ..
  &amp;lt;sourcecontrol type=&amp;quot;svn&amp;quot;&amp;gt;
  ...
  &amp;lt;/sourcecontrol&amp;gt;
  &amp;lt;tasks&amp;gt;
    &amp;lt;exec&amp;gt;
      &amp;lt;executable&amp;gt;DatabaseUpdater.exe&amp;lt;/executable&amp;gt;	
        &amp;lt;baseDirectory&amp;gt;[path to DatabaseUpdater installation folder]&amp;lt;/baseDirectory&amp;gt;
        &amp;lt;buildArgs&amp;gt;-update&amp;lt;/buildArgs&amp;gt;
        &amp;lt;buildTimeoutSeconds&amp;gt;360&amp;lt;/buildTimeoutSeconds&amp;gt;
        &amp;lt;successExitCodes&amp;gt;0&amp;lt;/successExitCodes&amp;gt;
    &amp;lt;/exec&amp;gt;
    &amp;lt;nant&amp;gt;
    ...
    &amp;lt;/nant&amp;gt;
  &amp;lt;/tasks&amp;gt;
&amp;lt;/project&amp;gt;
&lt;/pre&gt; &lt;br /&gt;As you can see I specified only &amp;quot;0&amp;quot; as a success exit code. If Database Updater cannot execute one of the update scripts it will return exit code &amp;quot;2&amp;quot; and CCNET will stop deployment before the project will be compiled and published on the web.&lt;br /&gt; &lt;br /&gt;To start using Database Updater you need to setup the database which means create a database table &lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=dbo&amp;amp;referringTitle=Home"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=DatabaseUpdates&amp;amp;referringTitle=Home"&gt;DatabaseUpdates&lt;/a&gt; that I described above and add information about the scripts that you probably already installed manually. Do not worry, Database Updater will do it for you. Just make a command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -setup -no_execute &lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;-setup&amp;quot; means adding database schema that needs Database Updater to work with database and &amp;quot;-no_execute&amp;quot; means add all scripts that you have without actually executing them.&lt;br /&gt; &lt;br /&gt;But before this let's edit Database Updater configuration file - DatabaseUpdater.exe.config. Two things you should be considered - path to folder where you store update scripts (somewhere in the source control imported project folder) and connection string to the database.&lt;br /&gt; &lt;br /&gt;After setupping Database Updater you can ask it to update the database by this command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -update&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;Or add Executable task in CCNET like I described above. The latest version of Database Updater with sources you can find here (release version placed in /bin/release folder inside the archive). Please notice also that Database Updater works with any database that .NET Framework supports. Enjoy the coding and let continuous integration do the other stuff!&lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:39:23 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080322123923A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
Database Updater is .NET application that helps you manage database updates and can be easily integrated with Cruise Control .NET.
&lt;br /&gt; &lt;br /&gt;For example,&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;lt;project name=&amp;quot;ProjectName&amp;quot;&amp;gt;
  ..
  &amp;lt;sourcecontrol type=&amp;quot;svn&amp;quot;&amp;gt;
  ...
  &amp;lt;/sourcecontrol&amp;gt;
  &amp;lt;tasks&amp;gt;
    &amp;lt;exec&amp;gt;
      &amp;lt;executable&amp;gt;DatabaseUpdater.exe&amp;lt;/executable&amp;gt;	
        &amp;lt;baseDirectory&amp;gt;[path to DatabaseUpdater]&amp;lt;/baseDirectory&amp;gt;
        &amp;lt;buildArgs&amp;gt;-update&amp;lt;/buildArgs&amp;gt;
        &amp;lt;buildTimeoutSeconds&amp;gt;360&amp;lt;/buildTimeoutSeconds&amp;gt;
        &amp;lt;successExitCodes&amp;gt;0&amp;lt;/successExitCodes&amp;gt;
    &amp;lt;/exec&amp;gt;
    &amp;lt;nant&amp;gt;
    ...
    &amp;lt;/nant&amp;gt;
  &amp;lt;/tasks&amp;gt;
&amp;lt;/project&amp;gt;
&lt;/pre&gt; &lt;br /&gt;As you can see I specified only &amp;quot;0&amp;quot; as a success exit code. If Database Updater cannot execute one of the update scripts it will return exit code &amp;quot;2&amp;quot; and CCNET will stop deployment before the project will be compiled and published on the web.&lt;br /&gt; &lt;br /&gt;To start using Database Updater you need to setup the database which means create a database table &lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=dbo&amp;amp;referringTitle=Home"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=DatabaseUpdates&amp;amp;referringTitle=Home"&gt;DatabaseUpdates&lt;/a&gt; that I described above and add information about the scripts that you probably already installed manually. Do not worry, Database Updater will do it for you. Just make a command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -setup -no_execute &lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;-setup&amp;quot; means adding database schema that needs Database Updater to work with database and &amp;quot;-no_execute&amp;quot; means add all scripts that you have without actually executing them.&lt;br /&gt; &lt;br /&gt;But before this let's edit Database Updater configuration file - DatabaseUpdater.exe.config. Two things you should be considered - path to folder where you store update scripts (somewhere in the source control imported project folder) and connection string to the database.&lt;br /&gt; &lt;br /&gt;After setupping Database Updater you can ask it to update the database by this command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -update&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;Or add Executable task in CCNET like I described above. The latest version of Database Updater with sources you can find here (release version placed in /bin/release folder inside the archive). Please notice also that Database Updater works with any database that .NET Framework supports. Enjoy the coding and let continuous integration do the other stuff!&lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:38:50 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080322123850A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
Database Updater is .NET application that helps you manage database updates and can be easily integrated with Cruise Control .NET.
&lt;br /&gt; &lt;br /&gt;For example,&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
&amp;amp;lt;project name=&amp;quot;Philly2Night&amp;quot;&amp;amp;gt;
  ...
  &amp;amp;lt;sourcecontrol type=&amp;quot;svn&amp;quot;&amp;amp;gt;
  ...
  &amp;amp;lt;/sourcecontrol&amp;amp;gt;
  &amp;amp;lt;tasks&amp;amp;gt;
    &amp;amp;lt;exec&amp;amp;gt;
      &amp;amp;lt;executable&amp;amp;gt;DatabaseUpdater.exe&amp;amp;lt;/executable&amp;amp;gt;
      &amp;amp;lt;baseDirectory&amp;amp;gt;[path to DatabaseUpdater]&amp;amp;lt;/baseDirectory&amp;amp;gt;
      &amp;amp;lt;buildArgs&amp;amp;gt;-update&amp;amp;lt;/buildArgs&amp;amp;gt;
      &amp;amp;lt;buildTimeoutSeconds&amp;amp;gt;360&amp;amp;lt;/buildTimeoutSeconds&amp;amp;gt;
      &amp;amp;lt;successExitCodes&amp;amp;gt;0&amp;amp;lt;/successExitCodes&amp;amp;gt;
    &amp;amp;lt;/exec&amp;amp;gt;
    &amp;amp;lt;nant&amp;amp;gt;
    ...
    &amp;amp;lt;/nant&amp;amp;gt;
  &amp;amp;lt;/tasks&amp;amp;gt;
&amp;amp;lt;/project&amp;amp;gt;
&lt;/pre&gt; &lt;br /&gt;As you can see I specified only &amp;quot;0&amp;quot; as a success exit code. If Database Updater cannot execute one of the update scripts it will return exit code &amp;quot;2&amp;quot; and CCNET will stop deployment before the project will be compiled and published on the web.&lt;br /&gt; &lt;br /&gt;To start using Database Updater you need to setup the database which means create a database table &lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=dbo&amp;amp;referringTitle=Home"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=DatabaseUpdates&amp;amp;referringTitle=Home"&gt;DatabaseUpdates&lt;/a&gt; that I described above and add information about the scripts that you probably already installed manually. Do not worry, Database Updater will do it for you. Just make a command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -setup -no_execute &lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;-setup&amp;quot; means adding database schema that needs Database Updater to work with database and &amp;quot;-no_execute&amp;quot; means add all scripts that you have without actually executing them.&lt;br /&gt; &lt;br /&gt;But before this let's edit Database Updater configuration file - DatabaseUpdater.exe.config. Two things you should be considered - path to folder where you store update scripts (somewhere in the source control imported project folder) and connection string to the database.&lt;br /&gt; &lt;br /&gt;After setupping Database Updater you can ask it to update the database by this command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -update&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;Or add Executable task in CCNET like I described above. The latest version of Database Updater with sources you can find here (release version placed in /bin/release folder inside the archive). Please notice also that Database Updater works with any database that .NET Framework supports. Enjoy the coding and let continuous integration do the other stuff!&lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:36:50 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080322123650A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
Database Updater is .NET application that helps you manage database updates and can be easily integrated with Cruise Control .NET.
&lt;br /&gt; &lt;br /&gt;For example,&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;&amp;lt;project name=&amp;quot;Philly2Night&amp;quot;&amp;gt;&lt;br /&gt;  ...&lt;br /&gt;  &amp;lt;sourcecontrol type=&amp;quot;svn&amp;quot;&amp;gt;&lt;br /&gt;  ...&lt;br /&gt;  &amp;lt;/sourcecontrol&amp;gt;&lt;br /&gt;  &amp;lt;tasks&amp;gt;&lt;br /&gt;    &amp;lt;exec&amp;gt;&lt;br /&gt;      &amp;lt;executable&amp;gt;DatabaseUpdater.exe&amp;lt;/executable&amp;gt;&lt;br /&gt;      &amp;lt;baseDirectory&amp;gt;&lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=path%20to%20DatabaseUpdater&amp;amp;referringTitle=Home"&gt;path to DatabaseUpdater&lt;/a&gt;&amp;lt;/baseDirectory&amp;gt;&lt;br /&gt;      &amp;lt;buildArgs&amp;gt;-update&amp;lt;/buildArgs&amp;gt;&lt;br /&gt;      &amp;lt;buildTimeoutSeconds&amp;gt;360&amp;lt;/buildTimeoutSeconds&amp;gt;&lt;br /&gt;      &amp;lt;successExitCodes&amp;gt;0&amp;lt;/successExitCodes&amp;gt;&lt;br /&gt;    &amp;lt;/exec&amp;gt;&lt;br /&gt;    &amp;lt;nant&amp;gt;&lt;br /&gt;    ...&lt;br /&gt;    &amp;lt;/nant&amp;gt;&lt;br /&gt;  &amp;lt;/tasks&amp;gt;&lt;br /&gt;&amp;lt;/project&amp;gt;&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;As you can see I specified only &amp;quot;0&amp;quot; as a success exit code. If Database Updater cannot execute one of the update scripts it will return exit code &amp;quot;2&amp;quot; and CCNET will stop deployment before the project will be compiled and published on the web.&lt;br /&gt; &lt;br /&gt;To start using Database Updater you need to setup the database which means create a database table &lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=dbo&amp;amp;referringTitle=Home"&gt;dbo&lt;/a&gt;.&lt;a href="http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=DatabaseUpdates&amp;amp;referringTitle=Home"&gt;DatabaseUpdates&lt;/a&gt; that I described above and add information about the scripts that you probably already installed manually. Do not worry, Database Updater will do it for you. Just make a command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -setup -no_execute &lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;quot;-setup&amp;quot; means adding database schema that needs Database Updater to work with database and &amp;quot;-no_execute&amp;quot; means add all scripts that you have without actually executing them.&lt;br /&gt; &lt;br /&gt;But before this let's edit Database Updater configuration file - DatabaseUpdater.exe.config. Two things you should be considered - path to folder where you store update scripts (somewhere in the source control imported project folder) and connection string to the database.&lt;br /&gt; &lt;br /&gt;After setupping Database Updater you can ask it to update the database by this command:&lt;br /&gt; &lt;br /&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;DatabaseUpdater -update&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt; &lt;br /&gt;Or add Executable task in CCNET like I described above. The latest version of Database Updater with sources you can find here (release version placed in /bin/release folder inside the archive). Please notice also that Database Updater works with any database that .NET Framework supports. Enjoy the coding and let continuous integration do the other stuff!&lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:35:25 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080322123525A</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/databaseupdater/SourceControl/ListDownloadableCommits.aspx</link><description>The first version</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:31:56 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080322123156A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
Database Updater is .NET application that helps you manage database updates and can be interated with Cruise Control .NET.
&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Sat, 22 Mar 2008 00:08:01 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080322120801A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/databaseupdater/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>klalex</author><pubDate>Fri, 21 Mar 2008 23:01:47 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080321110147P</guid></item></channel></rss>