Mysql bash database name is wrong when database exists?
P粉818125805
P粉818125805 2024-01-29 12:27:49
0
1
379

I am currently scripting the migration using bash scripting. When I try to open the database via a variable in a bash script, the database name is incorrect. I get the following error "'RROR 1102 (42000): Database name 'development' is incorrect"

mysql --batch --host=********** --user=**** --password=***** $dbName -e "${fileContents}"

When I do this in a bash script, the database exists

mysql --batch --host=********** --user=**** --password=***** development -e "${fileContents}"

The variable fileContents is the migration script in SQL. The variable dbName is the name of the database.

I get the database name from a table in the database with the following lines

databaseNames=()
shopt -s lastpipe
mysql --batch --raw  --host=***** --user=**** --password=***** -e 'SELECT database_name FROM users.organisations'  | while read dbName guid; do
    if [ $i -gt 0 ]
    then
        databaseNames+=($dbName)
    fi
    i=$(($i + 1))
done

The names in the database array seem to be correct, but I think the array is messing things up. I'm looping over the true array as follows.

for dbName in "${databaseNames[@]}" do

P粉818125805
P粉818125805

reply all(1)
P粉714844743

Your array is empty. You have to change the while loop to

while read dbName guid; do
      databaseNames+=($dbName)
done 

Then

for dbName in "${databaseNames[@]}"
do
  echo $dbName
  mysql --batch --raw  --host=$host --port=$port --user=$user --password=$password  --database="$dbName" -e '${fileContents};')
done
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!