Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(6) | Call(3) | Derive(0) | Import(3)
iteritems = lambda o: o.iteritems()
from django.db.backends import BaseDatabaseIntrospection from pymysql import ProgrammingError, OperationalError from pymysql.constants import FIELD_TYPE import re from .py3 import iteritems
def get_primary_key_column(self, cursor, table_name): """ Returns the name of the primary key column for the given table """ for column in iteritems(self.get_indexes(cursor, table_name)):
src/d/j/django-mysql-pymysql-HEAD/src/mysql_pymysql/introspection.py django-mysql-pymysql(Download)
from django.db.backends import BaseDatabaseIntrospection from pymysql import ProgrammingError, OperationalError from pymysql.constants import FIELD_TYPE import re from .py3 import iteritems
def get_primary_key_column(self, cursor, table_name): """ Returns the name of the primary key column for the given table """ for column in iteritems(self.get_indexes(cursor, table_name)):
src/f/e/FetionWether-HEAD/hello/mysql_pymysql/introspection.py FetionWether(Download)
from django.db.backends import BaseDatabaseIntrospection from pymysql import ProgrammingError, OperationalError from pymysql.constants import FIELD_TYPE import re from .py3 import iteritems
def get_primary_key_column(self, cursor, table_name): """ Returns the name of the primary key column for the given table """ for column in iteritems(self.get_indexes(cursor, table_name)):