コード例 #1
0
ファイル: queries.py プロジェクト: JacoRuit/diamond
 def join(self, selectable, on_clause):
     self.__joins.append((selectable, parsable(on_clause)))
     return self
コード例 #2
0
ファイル: queries.py プロジェクト: JacoRuit/diamond
 def where(self, node):
     if self.__where != None: raise Exception("Where already set!")
     self.__where = parsable(node)
     return self