[sqlalchemy] SQLAlchemy and pymssql and cyrillic names of tables/columns

2014-04-18 Thread Belegnar Dragon
Hello! Is it possible to handle with SQLAlchemy mssql database with cyrillic table and column names? -- WBR, TO -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To unsubscribe from this group and stop receiving emails from it, send an email to

[sqlalchemy] Could not locate column in row for column

2014-06-20 Thread Belegnar Dragon
Hello. SQLAlchemy 0.9.4 In this code def unidecode_column_name(inspector, table, column_info): column_info['key'] = unidecode(column_info['name']).replace(u' ', u'_') engine = create_engine(mssql+pyodbc://%s:%s@RTBD % (settings.RT_USER, settings.RT_PWD), echo = True) metadata =

[sqlalchemy] Re: SQLAlchemy and pymssql and cyrillic names of tables/columns

2017-07-12 Thread Belegnar Dragon
Everything works fine with freetds compiled at git master пятница, 18 апреля 2014 г., 16:06:30 UTC+4 пользователь Belegnar Dragon написал: > > Hello! > > Is it possible to handle with SQLAlchemy mssql database with cyrillic > table and column names? > > -- > WBR, &