Skip to content

Method recs_get

marufcetin edited this page Sep 1, 2026 · 1 revision

Method: recs_get()

Turkce Dokumantasyon | English Documentation

Category: Low-Level Access Methods
Submodule: AmberDB::Base
Entry Type: Raw Record Retrieval


1. Definition and Overview

recs_get() retrieves raw unparsed byte records directly for specific record IDs from an open DB_File handle.


2. Syntax and Signature

my $raw_data_hashref = $adb->recs_get($file_path, @record_ids);

3. Practical Code Example

my $raw_rows = $adb->recs_get("/path/to/table.db", 101, 102);
# Returns: { 101 => "raw_byte_data_101", 102 => "raw_byte_data_102" }

4. See Also

AmberDB Encyclopedia

Home · A-Z Index


Getting Started & Guides


Core Concepts


Core CRUD Methods


Query, Search & Facets


Transactions & Locks


Cache, Buffer & Low-Level


Locale & Helpers


Maintenance & Tools


Configuration Flags


File Formats


Language

Clone this wiki locally