diff options
author | lshprung <lshprung@yahoo.com> | 2021-09-12 11:41:07 -0700 |
---|---|---|
committer | lshprung <lshprung@yahoo.com> | 2021-09-12 11:41:07 -0700 |
commit | 7a5dbd86ff22344932b063077f68b9f6e9946431 (patch) | |
tree | e20ec888672dd0335ed8b2aa175345e06cf244c0 /build_db.plx | |
parent | 7b6dfdf08f6e81bdf0cec9bc4157c12334c64898 (diff) |
Started working on script to build playlist files
Diffstat (limited to 'build_db.plx')
-rwxr-xr-x | build_db.plx | 2 |
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); } |