records Questions
3
Solved
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 "Names...
Detection asked 17/9, 2011 at 10:41
4
Solved
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 represented as process with...
2
Solved
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 complex_v...
Explication asked 15/6, 2011 at 10:58
7
Solved
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 = mysql_num_ro...
1
Solved
I want to create a list of records with checkboxes on the left side....kinda like the inbox in Gmail. Then if a user selects some or all of these checkboxes, then the selected record(s) can be upda...
Dickinson asked 30/4, 2010 at 10:22
1
Solved
how to extract RTTI info about methods in Delphi records? is it possible by using new Rtti unit?
Jandel asked 21/3, 2010 at 23:31
2
I am checking website entrys that are recorded in a database
columns: browser, click_type_id, referrer, and datetime
if multiple rows have the same browser, click_type_id, and referrer and are ti...
Carousel asked 15/12, 2009 at 20:48
5
Solved
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 varia...
5
Possible Duplicate:
Sorting objects in an array by a field value in JavaScript
Suppose I have an array of records: [{a:0,b:0},{a:2,b:1},{a:1,b:2}]
which I wish to sort in descending o...
Flanch asked 6/11, 2009 at 19:13
1
Solved
I'd like to report on the number of records inserted in an Oracle insert statement. I'm inserting from a statement, so I could run my select twice and a count, but I'd rather keep it all in a singl...
Syndicate asked 23/9, 2009 at 20:41
2
Solved
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
Solved
I have a file 'records.txt' which contains over 200,000 records.
Each record is on a separate line and has multiple fields separated by a delimiter '|'.
Each row should have 35 fields, but the pr...
1
Solved
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 s...
10
Solved
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 alrea...
© 2022 - 2024 — McMap. All rights reserved.