Home
last modified time | relevance | path

Searched refs:my_col (Results 1 – 2 of 2) sorted by relevance

/external/clearsilver/util/
Dwdb.c1544 char *my_col = NULL; in wdb_keys() local
1564 my_col = strdup(col->name); in wdb_keys()
1565 if (my_col == NULL) in wdb_keys()
1570 err = uListAppend (my_data, my_col); in wdb_keys()
1571 my_col = NULL; in wdb_keys()
1581 if (my_col != NULL) free (my_col); in wdb_keys()
/external/clearsilver/python/examples/base/
Dodb.py752 my_col,foreign_col = self.__relations_by_table[a_table]
754 full_col_name = "%s.%s" % (my_col,a_col)
759 … join_clauses.append(" left join %s as %s on %s=%s " % (a_table,my_col,my_col,foreign_col))