Topic Text   Topic Comments (0)   Topic Properties   Topic Information sits@use...
Topic title: CVS commit: * Modified the way Perforce retrieves files f... Tuesday April 18, 2006 03:45:46

Download topic text | View in monospace font | Tab width set to 8 (change to 4)

Files in topic: (view all files)  
codestriker/CHANGELOG  1.184   {+10,-0}
codestriker/INFO.txt  1.7   {+4,-0}
codestriker/codestriker.conf  1.79   {+8,-2}
codestriker/bin/install.pl  1.2   {+1,-3}
codestriker/doc/codestriker.sgml  1.51   {+2,-2}
codestriker/lib/Codestriker.pm  1.82   {+1,-1}
codestriker/lib/Codestriker/DB/Database.pm  1.8   {+3,-0}
codestriker/lib/Codestriker/DB/Oracle.pm  1.7   {+1,-1}
SQLite.pm   {+82,-0}
codestriker/lib/Codestriker/Model/Delta.pm  1.8   {+3,-3}
codestriker/lib/Codestriker/Model/File.pm  1.24   {+3,-3}
codestriker/lib/Codestriker/Repository/Perforce.pm  1.3   {+10,-5}
codestriker/lib/Codestriker/Repository/RepositoryFactory.pm  1.19   {+4,-0}

[Add General Comment] to topic.

File codestriker/lib/Codestriker/DB/Database.pm (Revision 1.8) [Add File Comment] [<<] [Top] [>>]
 
Line 17 | Parallel Line 17 | Parallel
17 use Codestriker::DB::MySQL; 17 use Codestriker::DB::MySQL;
18 use Codestriker::DB::Oracle; 18 use Codestriker::DB::Oracle;
19 use Codestriker::DB::ODBC; 19 use Codestriker::DB::ODBC;
20 use Codestriker::DB::SQLite;
20 21
21 # Print out creation statements before executing them if this is true. 22 # Print out creation statements before executing them if this is true.
22 my $_DEBUG = 0; 23 my $_DEBUG = 0;
 
 
Line 41 | Parallel Line 42 | Parallel
41 return Codestriker::DB::ODBC->new(); 42 return Codestriker::DB::ODBC->new();
42 } elsif ($Codestriker::db =~ /^DBI:Oracle/i) { 43 } elsif ($Codestriker::db =~ /^DBI:Oracle/i) {
43 return Codestriker::DB::Oracle->new(); 44 return Codestriker::DB::Oracle->new();
45 } elsif ($Codestriker::db =~ /^DBI:SQLite/i) {
46 return Codestriker::DB::SQLite->new();
44 } else { 47 } else {
45 die "Unsupported database type: $Codestriker::db\n"; 48 die "Unsupported database type: $Codestriker::db\n";
46 } 49 }
 
File codestriker/lib/Codestriker/DB/Database.pm (Revision 1.8) [Add File Comment] [<<] [Top] [>>]
  
Legend:
Removed 
Changed
 Added

[Add General Comment] to topic.