Method: Libsql::Statement#write_blobs
- Defined in:
- lib/libsql/statement.rb
#write_blobs ⇒ Object
Write any blobs that have been bound to parameters to the database. This assumes that the blobs go into the last inserted row
236 237 238 239 240 241 242 |
# File 'lib/libsql/statement.rb', line 236 def write_blobs unless @blobs_to_write.empty? @blobs_to_write.each do |blob| blob.write_to_column! end end end |