如何在phpMyAdmin书签的SQL查询中使用多个变量?

时间:2015-06-08 19:39:24

标签: php mysql phpmyadmin

我已经尝试过最后一个未发布的phpMyAdmin(4.5.0)版本来试用带有书签的SQL查询中的多变量。我有一个带书签的查询,如:

import sys
input_file = open ('hostnames.txt', 'r')
template = open ('hosttemplate.txt', 'r')
count_lines = 0
for hostname in input_file:
        system = hostname
        computername = open(system.strip()+".test",'a')
        computername.write("need to write data from template to file and replace the string hostname with the hostname from hostnames.txt")
        print hostname
        count_lines += 1
print 'number of lines:', count_lines

但是当我从下拉列表书签菜单中选择我的查询时,没有显示输入字段。 来自GitHub的问题#933告诉它已关闭,是准备好还是我做错了什么?

0 个答案:

没有答案