I have read that we can not create Stored Procedure in SQLite, But I\'d to know is there any third party library available by which we can use the same or any other way to creat
SQLite does not support stored procedures. Neither in Android, nor in other environments. There has been efforts made to include stored procedures in SQLite like this one, but these have been far from being perfect.
Reassess your needs for a stored procedure in a resource constrained environment such as Android, and see if you really need them. Stored procedures are better suited for those DB engines that run on a server platform.