Вот часть моего кода:
sample_1=''
sample_1_is_cancelled=''
sample_2=''
sample_2_is_cancelled=''
sample_3=''
sample_3_is_cancelled=''
sample_4=''
sample_4_is_cancelled=''
sample_5=''
sample_5_is_cancelled=''
while read -r insert
do
eval sample_$i=$(echo $insert| awk -F'|' '{print $1}')
eval sample_$i_is_cancelled=$(echo $insert| awk -F'|' '{print $2}')
i=$(( i + 1 ))
done < $logpath/source.txt
mysql -uroot -p -e" insert into ttable(sample_1, sample_1_is_cancelled, sample_2, sample_2_is_cancelled, sample_3, sample_3_is_cancelled, sample_4, sample_4_is_cancelled, sample_5, sample_5_is_cancelled)
values($sample_1, $sample_1_is_cancelled, $sample_2 $sample_2_is_cancelled, $sample_3, $sample_3_is_cancelled, $sample_4, $sample_4_is_cancelled, $sample_5, $sample_5_is_cancelled);"
Максимально возможно 5 наборов значений. Минимально — один набор.
Я могу вывести переменные следующим образом:
eval echo \$sample_$i
eval echo \$sample_${i}_is_cancelled
Но я не могу передать его в запросе вставки таким же образом. Любые предложения... Пожалуйста, помогите.
решение1
Вот пример того, как это сделать, используя два массива («fields» и «values»).
#!/bin/bash
declare -a fields values
infile="./source.txt"
#infile="$logpath/source.txt"
i=0
while read -r insert; do
# split "$insert" into a and b, using | as delimiter
a="${insert%|*}"
b="${insert#*|}"
# create the field names from the loop counter $i
let i++
sfield="sample_$i"
cfield="sample_${i}_is_cancelled"
fields+=("$sfield" "$cfield")
values+=("$a" "$b")
done < "$infile"
# show what's in the arrays:
declare -p fields
echo
declare -p values
# now build the SQL string, in parts:
# field names don't need to be quoted
f=$(printf "%s, " "${fields[@]}" | sed -e 's/, $//')
# this assumes values are strings and need to be quoted
v=$(printf "'%s', " "${values[@]}" | sed -e 's/, $//')
sql="$(printf "insert into ttable(%s) values (%s);" "$f" "$v")"
echo
echo "mysql -uroot -p -e \"$sql\""
Дан следующий sources.txt
файл:
$ cat source.txt
one|two
three|four
foo|bar
junk|more junk
Запуск скрипта даст следующий результат:
declare -a fields=([0]="sample_1" [1]="sample_1_is_cancelled" [2]="sample_2"
[3]="sample_2_is_cancelled" [4]="sample_3" [5]="sample_3_is_cancelled"
[6]="sample_4" [7]="sample_4_is_cancelled")
declare -a values=([0]="one" [1]="two" [2]="three" [3]="four"
[4]="foo" [5]="bar" [6]="junk" [7]="more junk")
mysql -uroot -p -e "insert into ttable(sample_1, sample_1_is_cancelled, sample_2,
sample_2_is_cancelled, sample_3, sample_3_is_cancelled,
sample_4, sample_4_is_cancelled) values ('one', 'two', 'three', 'four',
'foo', 'bar', 'junk', 'more junk');"
(добавлены переводы строк и отступы для улучшения читабельности)
ПРИМЕЧАНИЕ: если вам нужно сделать больше с именами полей или значениями в самом скрипте оболочки (т. е. больше, чем просто использовать его в операторе вставки SQL), то вам, вероятно, лучше использовать два ассоциативных массива (один для образцов, а другой для отмененных образцов), используя переменные $sfield и $cfield в качестве ключей для этих массивов. Я начал писать скрипт таким образом, затем понял, что он слишком сложен для этой задачи (и потребовал бы больше работы для объединения полей и значений для построения строки SQL), поэтому упростил его, просто используя индексированные массивы $fields и $values.