django-pyodbc queries returning fields with ANSI Padding Status ON, how to strip out whitespace?

StackOverflow https://stackoverflow.com/questions/20534535

So I am querying an SQL Server DB which has many CHAR fields with ANSI Padding Status ON. This means that for a CHAR(10) field, the value may be "123" but I'm instead receiving "123......." (whitespace) in the result.

Is there a best practice method to handle this?

有帮助吗?

解决方案

Apply python's strip before you save it.

Or add a method to the model which strips whitespace from the property when called. You could even override the default getter method.

@property
def stripped_foo(self):
    return self.foo.strip()
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top