Re: More questions on Python strings

2014-08-31 Thread Peter Otten
MRAB wrote: > On 2014-08-31 18:37, Dennis E. Evans wrote: >> >>Hi >> >> I have a function that reads some meta data from a database and builds a >> default order by and where clause for a table. >>Is the a way to build the strings with out using the intermediate >>list? >> >>the e

Re: More questions on Python strings

2014-08-31 Thread MRAB
On 2014-08-31 18:37, Dennis E. Evans wrote: Hi I have a function that reads some meta data from a database and builds a default order by and where clause for a table. some details, rows is a list of pyOdbc.Row and will look like this [1, 'ColumnName', 3, 5] there will be one to n el

More questions on Python strings

2014-08-31 Thread Dennis E. Evans
Hi I have a function that reads some meta data from a database and builds a default order by and where clause for a table. some details, rows is a list of pyOdbc.Row and will look like this [1, 'ColumnName', 3, 5] there will be one to n elements EmptyString, defaultColumn, default