Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
672 views

Avoiding namespace pollution in Haskell

I'm using lots of different records in a program, with some of them using the same field names, e.g. data Customer = Customer { ..., foo :: Int, ... } data Product = Product { ..., foo :: Int, ... } ...
8
votes
7answers
1k views

Why can't Delphi records have inheritance?

Something I've wondered for a long time: why aren't Delphi records able to have inheritance (and thus all other important OOP features)? This would essentially make records the stack-allocated ...
8
votes
5answers
1k views

Records in Delphi

some questions about records in Delphi: As records are almost like classes, why not use only classes instead of records? In theory, memory is allocated for a record when it is declared by a ...
6
votes
6answers
5k views

How can I record voice and record Call in Android?

Please help me if you know how to record voice and if anybody call us than record both voice. If anybody know then give me hint.
6
votes
6answers
3k views

“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; TForm1 = class(TForm) private FRec : TRec; public ...
5
votes
7answers
580 views

Faster way to know the total number of rows in MySQL database?

If I need to know the total number of rows in a table of database I do something like this: $query = "SELECT * FROM tablename WHERE link='1';"; $result = mysql_query($query); $count = ...
5
votes
1answer
560 views

Delphi - RTTI info about methods in records

how to extract RTTI info about methods in Delphi records? is it possible by using new Rtti unit?
5
votes
10answers
1k views

Generating unique account numbers - recursive call

Hi i need to generate 9 digit unique account numbers. Here is my pseudocode: function generateAccNo() generate an account number between 100,000,000 and 999,999,999 if the account number ...
4
votes
1answer
132 views

List implementation with records

Follow-up question to this question: (note that this is not a duplicate, I'm asking for alternatives here). Is there any way to make the following work: type List <T> = record private ...
4
votes
2answers
302 views

(OCaml) Strange syntax used in queue.ml — The `<-` operator

While browsing the Caml Light library for programming examples, I stumbled across the following code, taken from the Caml Light queue.ml file: type 'a queue_cell = Nil | Cons of 'a * 'a ...
4
votes
1answer
123 views

SQL Server: Selecting 1 rows results in 1+3 rows affected?

i'm selecting 1 row from a table: select * from LCTs WHERE LCTGUID = 'B642B9E6-779A-4FD0-8514-294EAF87A9A6' (1 row(s) affected) (3 row(s) affected) How can i get 4 rows affected by a single ...
4
votes
5answers
1k views

What's a good program to record video or screencast being played on screen? [closed]

What's a good program to record videos or screencasts being played on screen?
3
votes
2answers
108 views

defmulti vs defprotocol?

It seems like both can be used to define functions that you can implement later, with different data types. AFAIK the major difference is that defmulti works on maps and defprotocol works on records. ...
3
votes
1answer
141 views

Delphi: Declaring constant record type containing constant arrays

I have many constant arrays that do not all have the same number of elements. To store these arrays, I have declared an array type large enough to store (or reference?) every element of the largest ...
3
votes
2answers
102 views

How can you check for foreign key references for a list of records before attempting to delete any of these records in MySQL?

Is there a way, when you have a list of records, to check if each of these records have foreign key references before you attempt to delete any of these records? As an example, if I have a list of ...
3
votes
1answer
387 views

Rtti for Variant Records

I try to write a kind of object/record serializer with Delphi 2010 and wonder if there is a way to detect, if a record is a variant record. E.g. the TRect record as defined in Types.pas: TRect = ...
3
votes
3answers
653 views

What is the difference between a constructor and a procedure in Delphi records?

Is there difference in behavior between a constructor call and a procedure call in Delphi records? I have a D2010 code sample I want to convert to D2009 (which I am using). The sample uses a ...
3
votes
6answers
523 views

Delphi: Records in Classes

Following situation: type TRec = record Member : Integer; end; TMyClass = class private FRec : TRec; public property Rec : TRec read FRec write FRec; end; The following ...
3
votes
2answers
3k views

Delete all records in NSManagedObjectContext

is there a way to delete all the records from an NSManagedObjectContext? I'm using the following code to insert data: NSManagedObjectContext * context = [[NSApp delegate] managedObjectContext]; ...
3
votes
3answers
1k views

Wrapping TStringList in a Record

I tend to use Delphi's TStringList for text manipulation, so I write a lot of procedures/functions like: var TempList: TStringList; begin TempList:= TStringList.Create; try // blah blah ...
3
votes
2answers
264 views

When were extended records introduced?

In Delphi 7, you a record was nothing more than a collection of data grouped into one location. In the last few versions, you've been able to add public and private members, methods, properties and ...
3
votes
2answers
92 views

Is there an easier way to modify a value in a subsubsub record field in Erlang?

So I've got a fairly deep hierarchy of record definitions: -record(cat, {name = '_', attitude = '_',}). -record(mat, {color = '_', fabric = '_'}). -record(packet, ...
3
votes
1answer
4k views

How to count unique records and get number of these uniques in table using SQL?

Imagine I have table like this: id:Product:shop_id 1:Basketball:41 2:Football:41 3:Rocket:45 4:Car:86 5:Plane:86 Now, this is an example of large internet mall, where there are shops which sell ...
3
votes
3answers
318 views

Can record field updates in OCaml be generalized?

I'm a very novice OCaml programmer so please forgive me if this is a stupid/obvious question. There's a lot to absorb and I may have missed this in the documentation. I have a base of code that's ...
2
votes
2answers
48 views

MySQL DELETE all but latest X records

I have a script that runs every hour on my php site. In that script I would like some kind of MySQL query to delete every record from a table but say the latest 50. How would I do something like ...
2
votes
2answers
32 views

Active records: Working with a db object

I want to be able to select multiple rows with one query. I was wondering if you can do something like this? $teamsQuery = $this->db; foreach( $teamids as $teamid ) ...
2
votes
6answers
108 views

In Perl, how can I sort records using numbers that appear before the first colon (:)?

I have the following sequence of data in Perl: 143:0.0209090909090909 270:0.0909090909090909 32:0.0779090909090909 326:0.3009090909090909 Please, how can I sort them based on the numbers before ...
2
votes
3answers
148 views

Haskell polymorphic functions with records and class types

this post is the following of this one. I'm realizing a simple battle system as toy project, the typical system you can find in games like Final Fantasy et simila. I've solved the notorious ...
2
votes
4answers
101 views

erlang records trouble

I'am struggling with records in one of my modules. I defined on top of my code a record as: -record(user, {pid, name, nick}). in few words each user is going to be ...
2
votes
2answers
282 views

VHDL: Is it possible to define a generic type with records?

I am trying to define a complex type (i.e, a type that consists of both a real and imaginary part) and am trying to find out a way to make it generic. This my current static code: type ...
2
votes
2answers
58 views

How can I display a 'nothing entered yet' message for when theres no records?

In my app I have venue records where each one can have many photos and reviews. How can I go about displaying a 'nothing entered yet' message where the photos or reviews should be displayed when ...
2
votes
1answer
254 views

MySQL get nearest records to specific date grouped by type

I'm sorry I can't be more specific, but I don't know how to describe my problem in the title.. respectively I don't know how to search for similar question. So here is the deal. I have this table ...
2
votes
1answer
539 views

Create multiple records in one form with one model - No not nested forms or anything

Hi I've searched for a nice tut showing me how I can create multiple data into one single model with one form. I only find really advance nested forms with a lot of functionality that I believe I ...
2
votes
1answer
346 views

If the jar file of a J2ME MIDlet gets copied from one phone to another, do its records get copied too?

Apologies if this question has been asked before. After lots of searching, I could not find the answer anywhere. I was just reading about something called a Record Management System for J2ME. This ...
2
votes
1answer
91 views

Copying fields in OCaml

I have a very basic question regarding OCaml records. Suppose I have a record defined: type r = {a:int;b:int;c:int} let x = {a=3;b=8;c=2} Now, suppose I want to create a new record which has all ...
2
votes
3answers
149 views

php do something for every record in the database

I have two tables in the database(videos and viewData) . Im trying to build a script that runs for each record in the "videos" table and does something using the "videoID" field for that specific ...
2
votes
2answers
176 views

Erlang: Removing Fields in Records

Say you have an Erlang record of the following kind for songs: rd(song, {artist, title, album}). Song = #song{artist = <<"oasis">>, title = <<"wonderwall">>, album = ...
2
votes
2answers
690 views

Is it possible to restore deleted records from MDB?

I've deleted some records from an Access MDB file, is it possible in any way to retrieve the deleted records? It's very important, the only way I've found is with AccessFix which is too expensive.
2
votes
3answers
417 views

How can I copy a SQL record which has related records in other tables to the same database?

I created a function in C# which allows me to copy a record and its related children to a new record and new related children in the same database. (This is for an application that allows the use of ...
2
votes
2answers
654 views

iPhone sdk: How do I get a count of all the phone numbers in a address book?

Hi i am developing an app for my QA department. I need to programically get how many phone numbers are there in the entire address book. No user input. Just click a button and then get how many ...
2
votes
2answers
488 views

Read variable-length records from a buffer - weird memory issues

I'm trying to implement an i/o intensive quicksort (C++ qsort) on a very large dataset. In the interests of speed, I'd like to read in a chunk of data at a time into a buffer and then use qsort to ...
2
votes
3answers
63 views

MySQL database not wanting to add any new records

ok so I have this code `$sql = "INSERT INTO userTable (username, password, gender, city, zip, email) VALUES ('$username', '$password', '$male', '$city', '$email')"; mysql_query($sql) or die ("unable ...
2
votes
2answers
355 views

Implementation of vector class in Delphi?

How would you go about creating a vector class in Delphi? I would prefer to put all math related stuff into a DLL. Should I use a record or a class implementing an interface? Pros of record approach: ...
2
votes
2answers
41 views

Preparing a database in access? need help!

I am working in a small law firm and my boss has asked me to put a database together to help with outgoing mail. There are 5 different tables that exist in Access. (Applicants, Attorneys, Lien ...
2
votes
2answers
437 views

php get DNS records

HI Does anyone know how its possible to retrieve the DNS records for a domain. I have been using php and this function: dns_get_record to do this so far but have realised that this command gets ...
2
votes
4answers
4k views

c# linq update all records in database

im trying to update all records in a sql table using the following code but no data is updated. does anyone know why? using (DataContext db = new DataContext()) { foreach ...
2
votes
4answers
2k views

How to select a large amount of records in SQL SERVER

I'm trying to select more than 80,000 record in SQL Server in a table that has millions of records. The issue is that I've the correct Index, but it takes more than 15 minutes to return the recordset. ...
2
votes
2answers
5k views

What is the syntax for inserting data into a timestamp(6) type field in Oracle

I need to insert some data into a table in Oracle. The only problem is one of the fields is a timestamp(6) type and it is required data. I don't care about what actually goes in here I just need to ...
2
votes
5answers
327 views

When you are abstracting your database records and datasets into objects, what does your object model look like?

I'm asking all of you who aren't using a library for this, but are constructing your own objects for managing data flowing to and from your database tables. Do I have a recordset object? one object ...
1
vote
1answer
88 views

Erlang record to tuple list

I'm trying to work out a macro definition that will turn a record into a tuple list. Something like: > Id = #id{id1=1,id2=2,id3=3}. {id,1,2,3} > ?record_to_tuplelist(id,Id). ...

1 2 3 4