# File lib/fusefs/sqlitemapper.rb, line 28
        def initialize(db_path,sql,options = { },&row_mapper)
            @db_path = db_path.to_s
            @sql = sql.to_s
            define_singleton_method(:map_row,row_mapper) if block_given?
            super(options)
        end