Top "Record" questions

A record in programming is a data type with labels to access fields of the record.

OSStatus error 1718449215

I have created an iPhone application to record our voice. When I try to record, I am getting error message …

iphone core-audio record
Why most Delphi examples use FillChar() to initialize records?

I just wondered, why most Delphi examples use FillChar() to initialize records. type TFoo = record i: Integer; s: string; // not …

delphi initialization record
How to Pass Functions as Parameters in Procedures in Delphi?

Is it possible to pass an object function as a parameter in a procedure rather than passing the whole object? …

delphi function parameter-passing record procedure
How can I extract the values from a record as individual columns in postgresql

How can I extract the values from a record as individual comuns in postgresql SELECT p.*, (SELECT ROW(id,server_…

postgresql subquery row record
"Left side cannot be assigned to" for record type properties in Delphi

I'm curious to know why Delphi treats record type properties as read only: TRec = record A : integer; B : string; end; …

delphi record
How can I record live stream media from website

There is a website where I can watch full HD football games in live. So this is a live streaming …

streaming media live record
iOS: Sample code for simultaneous record and playback

I'm designing a simple proof of concept for multitrack recorder. Obvious starting point is to play from file A.caf …

ios audio record playback simultaneous
Adding records to a numpy record array

Let's say I define a record array >>> y=np.zeros(4,dtype=('a4,int32,float64')) and then …

python numpy concatenation record
lenses, fclabels, data-accessor - which library for structure access and mutation is better

There are at least three popular libraries for accessing and manipulating fields of records. The ones I know of are: …

data-structures haskell record lenses
How to record voice in a browser?

I need users to record their voice on a browser and then automatically upload the resulting mp3 to a webserver. …

browser record voice