What's the internals of a prepared statement like? [closed]
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 5 years ago . Here's how bind_params seem to be preparing sql statements: stmt = db.prepare( "select * from table where a=? and b=?" ) stmt.bind_params( 15, "hello" ) So in reality inside the stmt, we need to have map/array or something that will eventually map the arguments and create the right stmt. What's the