# File lib/kirbybase.rb, line 768
    def initialize(db)
        @db = db
        @recno_indexes = {}
        @indexes = {}

        # This hash will hold the table locks if in client/server mode.

        @mutex_hash = {} if @db.server?
    end