示例#1
0
 def __init__(self, table, column):
     SQL.__init__(self, '%s.%s' % (table, column))
示例#2
0
文件: expr.py 项目: victornovy/stoq
 def __init__(self, table, column):
     SQL.__init__(self, '%s.%s' % (table, column))
示例#3
0
 def __init__(self, expr):
     expr = '%({})s'.format(expr)
     SQL.__init__(self, expr)