<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Database Configuration</title><link>https://sourceforge.net/p/tapdancebio/wiki/Database%2520Configuration/</link><description>Recent changes to Database Configuration</description><atom:link href="https://sourceforge.net/p/tapdancebio/wiki/Database%20Configuration/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 11 Nov 2011 21:55:57 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/tapdancebio/wiki/Database%20Configuration/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Database Configuration modified by Jesse Erdmann</title><link>https://sourceforge.net/p/tapdancebio/wiki/Database%2520Configuration/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,20 +1,20 @@
 All of the connection settings for the database TAPDANCE is to use are copied from tapdance_base_config.pl to the project environment. This includes establishing the connection in Perl that TAPDANCE will use. See the embedded code sample for a configuration example:
 
-# The username to authenticate to the database with
+\# The username to authenticate to the database with
 $db_username = "my_db_user";
-# The user's password
+\# The user's password
 $db_password = "my_db_password";
-# The host where MySQL is running
+\# The host where MySQL is running
 $db_host     = "127.0.0.1";
-# The port MySQL is listening on 
+\# The port MySQL is listening on 
 $db_port     = '3306';
-# The database to use, the user must have table creation privileges
+\# The database to use, the user must have table creation privileges
 $db_name     = "my_database_name";
-# Currently only MySQL is available, but in the future other options may also exist 
+\# Currently only MySQL is available, but in the future other options may also exist 
 $db_type     = 'mysql';
-#Putting it all together
+\#Putting it all together
 $data_source =
 "dbi:$db_type:dbname=$db_name:$db_host;mysql_local_infile=1:$db_port";
-# Establishing the connection
+\# Establishing the connection
 $dbh = DBI-&gt;connect($data_source, $db_username, $db_password,
    { RaiseError =&gt; 1, AutoCommit =&gt; 0 }); 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jesse Erdmann</dc:creator><pubDate>Fri, 11 Nov 2011 21:55:57 -0000</pubDate><guid>https://sourceforge.netf24ee68595b5beb8e090467a4a61543a29eb097d</guid></item><item><title>WikiPage Database Configuration modified by Jesse Erdmann</title><link>https://sourceforge.net/p/tapdancebio/wiki/Database%2520Configuration/</link><description>All of the connection settings for the database TAPDANCE is to use are copied from tapdance_base_config.pl to the project environment. This includes establishing the connection in Perl that TAPDANCE will use. See the embedded code sample for a configuration example:

# The username to authenticate to the database with
$db_username = "my_db_user";
# The user's password
$db_password = "my_db_password";
# The host where MySQL is running
$db_host     = "127.0.0.1";
# The port MySQL is listening on 
$db_port     = '3306';
# The database to use, the user must have table creation privileges
$db_name     = "my_database_name";
# Currently only MySQL is available, but in the future other options may also exist 
$db_type     = 'mysql';
#Putting it all together
$data_source =
"dbi:$db_type:dbname=$db_name:$db_host;mysql_local_infile=1:$db_port";
# Establishing the connection
$dbh = DBI-&gt;connect($data_source, $db_username, $db_password,
   { RaiseError =&gt; 1, AutoCommit =&gt; 0 }); </description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jesse Erdmann</dc:creator><pubDate>Fri, 11 Nov 2011 21:54:55 -0000</pubDate><guid>https://sourceforge.net7ae5ec1519ba984c78efc3228f99bbc352c3f55e</guid></item></channel></rss>