Re: [sqlalchemy] Re: func.substr() documentation?

2015-08-03 Thread c.buhtz
On 2015-08-03 01:17 Pavel S pa...@schon.cz wrote: You should refer documentation of your RDBMS. It is sqlite3. '*func*' is just proxy to any function defined inside RDBMS. If your RDBMS has function *bla* (e.g. CREATE FUNCTION bla...), then you can call if from python using *func.bla()*.

[sqlalchemy] Re: func.substr() documentation?

2015-08-03 Thread Pavel S
You should refer documentation of your RDBMS. '*func*' is just proxy to any function defined inside RDBMS. If your RDBMS has function *bla* (e.g. CREATE FUNCTION bla...), then you can call if from python using *func.bla()*. Dne neděle 2. srpna 2015 19:12:04 UTC+2 c.b...@posteo.jp napsal(a):