Hello,

Is there a way to get the list of all the 'external' functions created in
a  SQLite connexion ?

(maybe there is no solution except a manual housekeeping)

#***** (example of external function creation in Python)
import sqlite3
conn = sqlite.connect(":memory:")
def mysqrt(s):
    return ("%s" %s**.5);

conn.create_function('mysqrt', 1, mysqrt)
#*****


Regards,
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to