Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #51399

RE: sqlite3 version lacks instr

From Peter Otten <__peter__@web.de>
Subject RE: sqlite3 version lacks instr
Date 2013-07-28 21:14 +0200
Organization None
References <13d04b58a1024039b66ea54a9d5bb85b@exch.activenetwerx.com> <assp.0921cf9ff5.8bca791c6c264850ac99e0c98361fb4e@exch.activenetwerx.com>
Newsgroups comp.lang.python
Message-ID <mailman.5202.1375038868.3114.python-list@python.org> (permalink)

Show all headers | View raw


Joseph L. Casale wrote:

>> Has anyone encountered this and utilized other existing functions
>> within the shipped 3.6.21 sqlite version to accomplish this?
> 
> Sorry guys, forgot about create_function...

Too late, I already did the demo ;)

>>> import sqlite3
>>> db = sqlite3.connect(":memory:")
>>> cs = db.cursor()
>>> cs.execute('select instr("the quick brown fox", "brown")').fetchone()[0]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
sqlite3.OperationalError: no such function: instr
>>> def instr(a, b):
...     return a.find(b) + 1 # add NULL-handling etc.
... 
>>> db.create_function("instr", 2, instr)
>>> cs.execute('select instr("the quick brown fox", "brown")').fetchone()[0]
11
>>> cs.execute('select instr("the quick brown fox", "red")').fetchone()[0]
0

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

RE: sqlite3 version lacks instr Peter Otten <__peter__@web.de> - 2013-07-28 21:14 +0200

csiph-web