Dr. Mucibirahman İLBUĞA wrote:
> Is there a very simple example how to create UDF in SQLite?!

From the Python documentation:

  import sqlite3
  import md5

  def md5sum(t):
      return md5.md5(t).hexdigest()

  con = sqlite3.connect(":memory:")
  con.create_function("md5", 1, md5sum)
  cur = con.cursor()
  cur.execute("select md5(?)", ("foo",))
  print cur.fetchone()[0]


Which language do you want to use?


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

Reply via email to