supporting of TCL in sqlite
does sqlite in iphone s开发者_如何学编程upports TCL commands? Do we need to give explicitly or its done automatically?
SQLite is a database.
TCL is an interpreter language (scripting).
You can call SQLite from within tcl with the proper interface/package/lib: http://www.sqlite.org/tclsqlite.html
You need to check if you're able to run tcl code from the app/location you're working on.
Could also be possible with a execute command to run tclsh with the proper params. You just need to validate this, then this is your answer.
精彩评论