summaryrefslogtreecommitdiff
path: root/build_db.plx
diff options
context:
space:
mode:
authorlshprung <lshprung@yahoo.com>2021-09-12 11:41:07 -0700
committerlshprung <lshprung@yahoo.com>2021-09-12 11:41:07 -0700
commit7a5dbd86ff22344932b063077f68b9f6e9946431 (patch)
treee20ec888672dd0335ed8b2aa175345e06cf244c0 /build_db.plx
parent7b6dfdf08f6e81bdf0cec9bc4157c12334c64898 (diff)
Started working on script to build playlist files
Diffstat (limited to 'build_db.plx')
-rwxr-xr-xbuild_db.plx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_db.plx b/build_db.plx
index e98423a..7d2cf04 100755
--- a/build_db.plx
+++ b/build_db.plx
@@ -237,7 +237,7 @@ if (!$options{append}){
else {
for my $i (sort(keys %columns)){
$statement = "SELECT COUNT(*) AS CNTREC FROM pragma_table_info('$table_name') WHERE name='$i';";
- if (db_cmd($dbh, $statement) == 0){
+ if (!db_cmd($dbh, $statement)){
$statement = "ALTER TABLE $table_name ADD COLUMN \"$i\";";
db_cmd($dbh, $statement);
}