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

learn more… | top users | synonyms

0
votes
1answer
31 views

can only get one value for $row['id']

I'm trying to get all the records in my database and it was successful, however I can only get 1 id value. I need to get all the id in my database and call a javascript function. In my code I can only ...
0
votes
0answers
11 views

Showing a Video, Recording a Video, Same Time, WITHOUT INTERNET

We have a tool which we use in online surveys that lets us show a video and record people's reactions to it... Basically, there is a play button; when you hit play, it begins recording you and playing ...
0
votes
1answer
21 views

Using Oracle PL/SQL table of record with multiple %rowtype fields

how can i populate a table of records wich has more than one field of %rowtype using bulk collect? my code: drop table child_table; drop table parent_table; / create table ...
1
vote
2answers
95 views

Parse Data with Many Attributes in Scala

I've been doing some self directed learning with weather data in Scala, because the data is free, big, and feeds into lots of other stuff I would like to do. Immediately I ran into trouble with how ...
-1
votes
1answer
21 views

App for virtual motion movement on touchscreen [closed]

I need an app that acts like a virtual finger that touches the screen. I would tag a specific region of the screen to that app so it acts like somebody touches the screen ( and activates any function ...
1
vote
2answers
22 views

mysql - select the 2nd blog from each category

How can I get the 2nd post from each category in php mysql? If I have a table as following: post_id | cate_id -------------------- 1 | 2 2 | 4 3 | 2 4 ...
0
votes
0answers
14 views

How to get the sound of frame using Avfoundation ios

How to get the sound of frame using Avfoundation ios .Iam geting frame by frame image using the delegate - (void)captureOutput:(AVCaptureOutput *)captureOutput ...
2
votes
3answers
63 views

Record containing access to instantiation of generic package based on that record

This is really an annoying problem. I have a record type that wraps various base types and now I need it to be able to store a vector (from Ada.Containers.Vectors) in itself! I guess that's not ...
0
votes
0answers
13 views

Record in 8 bit pcm format

I cannot seem to find a way to record a file in 8bit format instead of the standard, which is 16 bit. Now I am having: randomAccessWriter = new RandomAccessFile(filePath, "rw"); ...
0
votes
0answers
22 views

How to update or overload a selenium javascript prototype function?

I want to enhance the record function in the Recorder object. I want to put it into an extension. Recorder.prototype.record = My new function here Will just putting my function there and putting ...
-1
votes
0answers
7 views

SoundMeter to get maximum aplitude from device

i want to ask something i have SoundMeter.java to calculate maxamplitude and the range value is 0-12 for my device, but when i change my device, i realize that not all device has maximum range = 12. ...
0
votes
0answers
11 views

how to Record analog telephone voice in computer by Data Port

I use a digital phone (Not VOIP) at home to attend my official calls.How can I record the conversation in my laptop My telephone has an RJ data port and my laptop also has a data port.I use the ...
0
votes
0answers
16 views

Record Sound when video camera started in ios and upload to server frame by frame

Iam using Avfoundation to capture frames as images i want to record sound also with it and send frames and sound to server how to accomplish this . Thanks in advance
0
votes
1answer
31 views

How to move current record from a form to another form in access?

I would like to move the current record meaning all the field for the current person in that form to another form which is one table to another table via forms. Using one command button. How can I do ...
1
vote
1answer
17 views

Update Contour form(records) using the record ID

I can successfully create entries in contour programmatically(C#) but I am not able to update the created record using the record ID. After digging my head around can’t find a reason why the following ...
0
votes
0answers
11 views

how to do the inner record, mix two inner audio and record it

I am developing an app that can play background music and output the voice by clicking a button(the buttons image is a drug). Now I have another requirement:it need to record the background music and ...
-4
votes
2answers
114 views

how do i fill in a string grid with an array of records

I have the record structure of Tperson = record // setting/declaring the record firstname: string[30]; surname: string[30]; form: string[5]; catscore: real; predictedgrade: string[2]; ...
0
votes
0answers
7 views

record action rhinoscript? similar to photoshop

I'm learning some python script at the moment, very new to it. I am having some trouble with the overall syntax I have read the Python for rhino 5 manual but it seems to take me a lot of trial and ...
0
votes
0answers
17 views

Blank gaps appears when recording audio with AudioRecord

I use AudioRecord to record audio from Android, and then reply it using AudioTrack. However, the result is very terrible, it is somehow similar to what it recorded, but it maybe slower (or maybe ...
0
votes
0answers
15 views

Can i record an audio file playing in AVAudio player using AVAudio recorder?

i'm trying to record an audio with an increased playback speed... at present i can play the audio in that format...but cant save the audio file. just want an audio file jus the way i hear it...no ...
-1
votes
3answers
75 views

how to specify the position in txt file to delete record in C programming

void deleteRecord() { FILE *fp, *fdel; struct person obj; char number[20]; printf("\n============================"); printf("\n DELETE"); printf("\n============================\n\n"); ...
1
vote
3answers
37 views

Postgres dynamic sql and list result

I used EXECUTE(for dynamic sql) and SETOF(result is returning as list), but it is the wrong :( create table test as select 1 id, 'safd' data1,'sagd' data2 union select 2 id, 'hdfg' data1,'sdsf' ...
0
votes
3answers
43 views

Using report parameters in record selection

I have a Java application the invokes Crystal Reports through its Java libraries. One of the reports has the following clause in its record selector: and ({DriverMotionView.GROUPID} = ...
3
votes
2answers
107 views

Which is more efficient in Erlang: match on two different lines, or match in tuple?

Which of these two is more efficient in Erlang? This: ValueA = MyRecord#my_record.value_a, ValueB = MyRecord#my_record.value_b. Or this: {ValueA, ValueB} = {MyRecord#my_record.value_a, ...
1
vote
1answer
85 views

sorting a file of records error

I need to sort a file of records but I am not quite sure of how to do it. I have a file of records and I have attempted to sort them using a simple bubble sort but I am stuck and need some help. ...
0
votes
0answers
16 views

Copying only some fields to new record in VBA access 2010 [closed]

i am trying to make a button in a form (form for entering new items) that makes new record and copy from the previous one some of the fields and let me fill the rest. how can i do at?
1
vote
2answers
46 views

How to search files based on type

I'm building an app that records for a few minutes and saves to app folder, now i need a way lo get all .3gp files from folder and post them to server, i have no clue how to search for type files in ...
0
votes
0answers
26 views

Audio record for user defined time from C code to MATLAB [closed]

How to record audio for user defined time in MATLAB, when data is sent from C code to the MATLAB function? Here, I am verifying Audio by calling MATLAB function in C code using system command. To that ...
0
votes
0answers
18 views

play same video in two different surfaceview

I am recording video and playing on sufaceview in my app. And it works fine. But I want to same play same video on two different surfaceview while recording video. I searched on google but did not ...
-1
votes
2answers
23 views

Changing all data in mysql database

What would be the sql statement to change the value of order_status field to 3 of all order_id that are between 1 and 700. Mysql Database name is test_test Thanks for any help.
0
votes
1answer
19 views

How to get total from previous record in php mysql

I have a problem with this: count this id no 1 = usage/nod count this id no 2 = (usage[id1]+usage[id2])/(nod[id1]+nod[id2]) count this id no 3 = ...
0
votes
0answers
10 views

A framework support record and play it directly on the website

I work on build a web (base on java) similar to a radio, you may call it radio online. Please advice me a framework that support record (from my micro etc) and play it directly on the web. All records ...
0
votes
1answer
38 views

ios - Recording Audio After VIdeo play

I can't record audio after playing a video, if I record before playing the video no problem but then I have to close the application to record again. I can't record audio after playing a video, if I ...
0
votes
0answers
31 views

How to record and replay an application in android?

i m trying to make an android application and want to put record and replay, i want to save whole application process. Is it possible to make record and replay in android? If it is possible how can i ...
0
votes
1answer
38 views

MS Access custom layout report

Currently I have a query that returns records like this: ChargeCode Type Price THC Credit 6200 OTH Debit 3000 THC Debit 5400 Then i ...
2
votes
1answer
45 views

Record video on browser and upload to LAMP server

I have tried a lot of things out there: red5, jquery webcam, html5 ... but none of these solution record a video and leave it ready to upload to a server. Is there anyway (html5, flash, whatever ... ...
0
votes
6answers
60 views

Is there a way to update a record in an Arraylist without deleting the existing record?

I have an arraylist , where records are stored as objects. I want to know if there is a way to update a record in an array list without deleting the existing record? For example, my records have ...
-1
votes
1answer
26 views

Error when trying to add records to database table

I have created a system included a database using mySQL on visual studio express 2010. One of the tables I have included in my tables is booking. When i tried to input records into this tabl from the ...
0
votes
1answer
74 views

How to hide my A record? (like cloudflare)

I'm interested in making my high protected server into a "like cloudflare" website. I mean, what I want to do is to add DNS zones (domains) to my server, then point the A record to the real server and ...
1
vote
3answers
138 views

Best way to keep an array sorted when adding/deleting cells

Version of Delphi used: 2007 Hello, I have an array of Tecord TInfo = Record Name : String; Price : Integer; end; var Infos : Array of Tinfo; I was looking for a way to sort my Infos array and ...
3
votes
2answers
164 views

Optimization of function value access in record using F#

Is there any reason why F# is not clever enough to optimize the following code? fast = 880 and slow = 8090. type Data = { fn: int * int -> int } let fn (x, y) = x + y let data = { fn = fn } let ...
0
votes
0answers
35 views

Coq - fold and maps on record types

I had previously posted problems like the following, but have not yet found a solution. I am having a store (mapping) from a record type (with five members) to a string value. A fold with a function ...
0
votes
1answer
23 views

apache nutch does not add sublinks to main site

Could anyone please give a guidence on how to properly configure apache nutch in order to get some amount of records in the database as a result of crawling a web site. I would very appreciate that! ...
1
vote
0answers
26 views

Is it possible to give priorities to audio input sources while recording in iOS SDK?

I'm using Audio Sessions and Queues. I will explain the scenario: 1. iPad has USB audio interface connected using USB camera kit accessory. 2. App starts recording the audio. 3. User plugs in the ...
0
votes
2answers
98 views

i want to save all records from database in a file (read from database a)

i did a example Using Mule Studio to read Data from database i have not any problem or errors but i want to change this program. this program create a lot of files and read one record and save in to ...
0
votes
0answers
49 views

MP AVAudioSessionDelegateMediaPlayerOnly end interruption

I'm making an app for iPad that uses the camera of the device. Now I want it so that you can record and save videos with Custom buttons. The record is not really a problem, but when I save I get an ...
0
votes
1answer
43 views

How do I sort a file of records using an insertion sort in pascal?

So I have a .dat file which consists of about twenty records. The fields of the record are: Name, Date and Score and I want to sort the records by score so that I can display them in a high score ...
1
vote
2answers
49 views

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 I proceed to fill up the 4 records available. Now I get more data, something like >>> ...
-3
votes
0answers
46 views

how to convert audio from aif or 3gp to mp3 in godaddy [closed]

how can I convert audio file which I recorded in the iphone or andriod which has aif or 3gp format into mp3. I have godaddy account and I upload the file using ftp. but I can use php to upload the ...
-1
votes
0answers
156 views

How to Live Streaming audio in android?

I have develop audio live streaming in android app but i also get error :04-26 13:11:22.892: E/MediaPlayer(521): Error (1,-2147483648).and my source code in below .how to solve it .please help me!!! ...

1 2 3 4 5 19