0
votes
1answer
34 views
Is it possible to order_by with a callable?
DUPLICATE: http://stackoverflow.com/questions/981375/using-a-django-custom-model-method-property-in-orderby
I have two models; one that stores posts and another that stores votes …
0
votes
1answer
27 views
Maintain ordering of characters if there is no id (SQL Server 2005)
I have the following
Chars
A
C
W
B
J
M
How can I insert some sequential numbers so that after insertion of the numbers the order of characters will not change?
I mean if I use …
1
vote
3answers
25 views
Is LINQ to XML’s XElement ordered?
When I use LINQ to XML, is the order of the elements and attributes written out to text guaranteed to be the same order as how I added the XElement and XAttribute objects? Similar …
0
votes
4answers
78 views
floating-point to fixed variable (i.e. integer) conversion
Hi everyone,
Could someone please help me with byte ordering regarding floating point variables? Actually the code is working correctly on Solaris, but not on Windows Xp. Here is …
1
vote
1answer
68 views
Updating Order field in SQL
We're required to add Ordering to our EventVenue table, which we've done by adding an int field to store the EventVenue's placing in the order. The ordering is based upon the paren …
1
vote
3answers
67 views
SQL reordering Priority row-by-row
I posted an earlier version of this question last week, but after further consideration I realized the situation is a bit more complicated than first described, and I could use som …
0
votes
2answers
41 views
Django: Ordering by the first value of a tuple
I have a 7-tuple of tuples as such:
POSSIBILITIES = ((1, "Something"),
(2, "Something else"), ...)
Now I have an IntegerField with choices in a model with the p …
0
votes
2answers
29 views
Out of order messages possible with transactional queues in MSMQ?
I'm new to messaging and a little unclear as to whether it is possible for MSMQ to deliver out-of-order messages for transactional queues. I suppose it must be because if a message …
1
vote
7answers
340 views
LINQ Orderby clause is causing weird results
I have created the following LINQ query to demonstrate the problem:
string[] dateStrings = new string[] { "2009-07-20 13:00:00", "2009-07-20 16:00:00", "2009-07-20 09:00:00" };
D …
1
vote
1answer
40 views
Return random rows from the best ones (i.e: 100 rows -> best 10 -> get 5 random)
Hello all again!
Situation: A table with lots of photos, classified and with votes. I'm currently doing this:
SELECT n.nid, n.title, ....... order by v.value desc limit 0,5
Wha …
0
votes
3answers
58 views
Mysql Ordering Query
Hello I want to run a query to get the last five records from a table, but in reverse order. Currently I have:
$query = "SELECT * FROM Table ORDER BY id DESC LIMIT 5";
which isn …
1
vote
3answers
89 views
How does this “Lexographic order generation algorithm” work?
from Wikipedia:
Lexicographical order generation
For every number k, with 0 ≤ k < n!,
the following algorithm generates the
corresponding lexicographical
permutation …
1
vote
5answers
69 views
How do I order an array of floating point numbers using a criteria other than size, using LINQ?
For example, I have an array of floating point numbers:
float[] numbers = new float[] { 1, 34, 65, 23, 56, 8, 5, 3, 234 };
If I use:
Array.Sort(numbers);
Then the array is so …
1
vote
1answer
110 views
Change Order of columns
I am using gridView. I have 4 auto generated columns and 1 generated by my self. Now the column which i have generated is displayed first and then the auto generated columns.
I wan …
1
vote
3answers
135 views
c# string sorting VS Oracle string sorting
Hi!
I have to sort a list of strings in exactly the same way as they are returned to me from an oracle database. Unfortunately Oracle returns them in such a way, that numeric char …
