# File lib/jdbc_adapter/jdbc_sqlite3.rb, line 336
    def table_structure(table_name)
      returning structure = @connection.execute_query("PRAGMA table_info(#{quote_table_name(table_name)})") do
        raise(ActiveRecord::StatementInvalid, "Could not find table '#{table_name}'") if structure.empty?
      end
    end