0
votes
2answers
28 views
Combining the following mulitple SQL queries into 1
I want to combine
Select top 2 scouting.*
From scouting
Where scouting.astroLoc Like 'D33%'
Order By scouting.jumpGate Desc
with
Select top 2 scouting.*
From scouting
Where s …
3
votes
4answers
159 views
Multiple dispatch in C++
Hi, I am trying to understand what multiple dispatch is. I read a lot of various texts but I still have no idea what multiple dispatch is and what it is good for. Maybe the thing I …
0
votes
4answers
67 views
Selecting one element with multiple selectors in Jquery
Hi All,
Im kinda new to Jquery, so this might be easy, then again i cant seem to find anything on Google. So here goes.
I basically have this:
<div>
<div id="row1" …
1
vote
1answer
47 views
Hibernate map collection with constant key
Hi,
I'm trying to map a collection (of type map) using a foreign key and a fixed value as the key/mapping arguments.
I have several tables of product types and a language table w …
0
votes
3answers
52 views
SQLite - SELECT over multiple entries of the same data/column
I am a bit new to SQLite, and I am having a slight dilemma about my database design. I'll explain. Suppose you and your friends use a number of different nicknames on the Internet …
0
votes
1answer
78 views
C# multiple replace works slow, any faster idea ?
return mystring.replace(/&/g, "&").replace(/>/g, ">")
.replace(/</g, "<").replace(/"/g, """);
The above is my code, and I guess s …
2
votes
5answers
148 views
How to efficiently process 300+ Files concurrently in scala
Hello
I'm going to work on comparing around 300 binary files using Scala, bytes-by-bytes, 4MB each. However, judging from what I've already done, processing 15 files at the same t …
0
votes
2answers
39 views
Open Links in Multiple Browser Windows / Tabs
Hi,
I have a requirement to click on multiple links (selecting them) and then click a button that will open all selected links in new windows or tabs. This will of course be depen …
0
votes
1answer
27 views
MongoDB: How to update multiple documents with a single command?
I was surprised to find that the following example code only updates a single document:
> db.test.save({"_id":1, "foo":"bar"});
> db.test.save({"_id":2, "foo":"bar"});
> …
2
votes
1answer
74 views
Android: ListView elements with multiple clickable buttons
I've a ListView where every element in the list contains a TextView and two different Buttons. Something like this:
ListView
--------------------
[Text]
[Button 1][Button 2]
----- …
0
votes
2answers
31 views
MySQL: Select multiple tables
I want to select multiple tables with MySQL.
But I don't know exactly the name of them, but they have all the same structure.
For example:
table_345:
id || row_1 || row_2 || row_ …
1
vote
2answers
45 views
how to sum multiple sql queries together?
Hi!
I'm trying to run multiple queries on multiple tables- similar to "select count(*) from TableA where x=1" per table.
What I'd like to do, is get all of the count(*) values t …
0
votes
3answers
60 views
php multiple databases problem
Hi,
i've set two database conections as below
$con1 = mysql_connect("localhost", "root", "pwd") or die (mysql_error());
$con2 = mysql_connect("localhost", "wordpress", "pwd", tr …
5
votes
10answers
217 views
.NET solution - many projects vs one project
Hi all,
We currently have a rapidly growing C# codebase. Currently we have about 10 projects, split up in the usual categories, common/util stuff, network layer, database, ui com …
0
votes
0answers
18 views
Zend Framework - multiplate navigation blocks
Hi
I want to use the navigation helper to build my navigation menus using Acl. The Acl part I have working fine.
I now want to be able to display a few different types of navigat …
