Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
4k views

Eager loading child collection with NHibernate

I want to load root entities and eager load all it's child collection and aggregate members. Have been trying to use the SetFetchMode in FluentNHibernate, but are getting duplicates in one of the ...
4
votes
1answer
71 views

How to make a query in this nested document structure (MongoDB)?

(Sorry if it's a trivial question.) I have documents that looks like this (Python syntax): { '_id': SomeObjectId, 'features': [ {'id': 'featureX' , 'value': 6}, ...
4
votes
5answers
269 views

PHP and MySQL: Order by most recent date and limit 10

I am building a notes system on my site and I've got to the stage where users can post notes into the MySQL database using PHP and then PHP prints them out on a page. However, when they print/echo ...
3
votes
3answers
61 views

What is the best practice to query dates in SQL when parameterised queries are not possible

My brief is to implement a interface which has a method that looks something like 'GetValuesSqlStatement' below: public string SqlPattern { get { ... } } //this varies; eg. "SELECT name FROM ...
3
votes
4answers
607 views

Querying a polymorphic association

I have a polymorphic association like this - class Image < ActiveRecord::Base has_one :approval, :as => :approvable end class Page < ActiveRecord::Base has_one :approval, :as => ...
2
votes
1answer
136 views

Querying a many-to-many collection or how to include a many-to-many table in a criteria query?

I am quite new to the world of NHibernate and I can't seem to get this to work with the use of a criteria query: query a many-to-many relationship or query a collection (set/bag) on an entity. I've ...
2
votes
2answers
94 views

Database Querying — Better to count number of rows or better to keep an increment counter?

If you were implementing a blog application - what would you prefer - Having a counter in the "POSTS" table storing the number of comments SELECT comment_count FROM posts WHERE post_id = $id ...
2
votes
2answers
1k views

mongodb php getting fields unique values

I'm trying to get a list of unique values from the 'type' field from my mongodb collection. Example documents below: { "_id" : ..., "type" : "report", "tasks" : ... } { ...
2
votes
2answers
51 views

Effective way of doing http queries to a server on Java

I'm working on a software that does extensive queries to a database which is has a http interface. So my program parses and handles queries that are in form of long http:// addresses.. I have ...
2
votes
2answers
599 views

Grails Many to Many Association Querying

I have a many to many relationship. class Post { String title static hasMany = [tags:Tag] } class Tag { static hasMany = [posts:Post] } I would like to get a list of posts for a tag ...
1
vote
1answer
58 views

Ontology and the Web

I've been having trouble accessing an ontology that we built here via the web. I've been trying to understand sparql and as far as I can tell there's no real PHP support for ontologies yet. I was ...
1
vote
2answers
27 views

MongoDB Querying for object property in list

Let's say I do have a document like this: { _id: "cow", comments: [ {user: "karl", comment: "I like cows.", at: /*a date*/}, {user: "harry", comment: "Cows are the best.", at: ...
1
vote
1answer
111 views

MongoDB: Stored JavaScript Function

When I run below stored JavaScript function I get errors: > db.system.js.save({_id:"last_n_users", value: function(n){return db.users.find().sort({created_at:-1}).limit(n)}}) > ...
1
vote
2answers
99 views

Python Flask - Easy Querying Function

Can somebody explain me the last line return (rv[0] if rv else None) if one else rv ? Especially the role of one. def query_db(query, args=(), one=False): cur = g.db.execute(query, args) rv = ...
1
vote
2answers
412 views

Indexing and Querying URLS in Solr

I have a database of URLs that I would like to search. Because URLs are not always written the same (may or may not have www), I am looking for the correct way to Index and Query urls. I've tried a ...
1
vote
1answer
165 views

Subquery or a double query?

For a client I have built a travelagency website. Now they asked me to optimize and automize some things. One of these things is that the accommodations shown in the searchlist must be bookable. ...
1
vote
3answers
393 views

Looking for a script/tool to dump a list of installed features and programs on Windows Server 2008 R2

The same compiled .Net / C++ / Com program does different things on two seemingly same computers. Both have DOZENS of things installed on them. I would like to figure out what the difference between ...
1
vote
0answers
278 views

Problems with repository pattern reuse and query support

I've been reading both ddd and PoEAA books, and searching a lot on the web but i'm still confused and i think there is something i'm missing about the repository pattern: Context of use: Web apps ...
1
vote
3answers
5k views

NHibernate, Sum Query

If i have a simple named query defined, the preforms a count function, on one column: <query name="Activity.GetAllMiles"> <![CDATA[ select sum(Distance) from Activity ]]> ...
0
votes
1answer
35 views

EAV querying and tables

Now I have 4 tables: table categories: -id -category table products: -id -product -price -image table attributes: -id -attribute -product_id table values: -product_id -attribute_id -value And ...
0
votes
0answers
41 views

EAV querying (need help)

I have 3 tables: products id | category_id | product | price | image attributes id | attribute | category_id (does it need to be here? For example in admin section) values product_id ...
0
votes
0answers
30 views

Ontology And Web And Reasoning Specifically On New Data

So I'm really new to ontologies. I have built one, but that's it. Haven't done much work with it or querying it without say Protege. I was wondering if someone could tell me two things about it (or ...
0
votes
1answer
41 views

Ruby on Rails and Mongoid are driving me nuts! Few simple questions about querying

I am trying to retrieve all "cards" from Mongoid that have request="preview" I'm doing this via: @preview_cards = Card.where("request" => "PREVIEW") I have a few questions. 1) Why can't I ...
0
votes
1answer
53 views

Setting explicitly CouchDB document keys

CouchDB docs seem to have a key attached; it does not show up when retrieving a single document but you can use them to retrieve ranges of documents such as : wget ...
0
votes
1answer
33 views

serialized form input or querying

i am using php,mysql,jquery. My case is that step 1 : i generate 10 list items step 2 : on click of each item more data about that item is to be displayed As i can get all the data needed from ...
0
votes
2answers
285 views

MongoDB : use $ positional operator for querying

I have a collection with entries that look like : {"userid": 1, "contents": [ { "tag": "whatever", "value": 100 }, {"tag": "whatever2", "value": 110 } ] } I'd like to be able to query on that ...
0
votes
2answers
87 views

mysql: implement function into query

i'm having a database which is storing geo-data like countries, cities. i would like to use modrewrite with links like: mysite.com/europe/austria/vienna now the problem: in german, some countries ...
0
votes
0answers
149 views

Querying in Entity Framework, Where method problem

I'm doing a small project based on Entity Framework and webform. i have a big Table called requests with 7-8 properties. my first goal is using ModeContainter cont = new ModeConatiner() { var ...
0
votes
2answers
146 views

Querying in Entity Framework 4, method querying problem

i have a little misunderstanding and i hope you can clear that for me. i have a table called : Requests. I want to do query, lets say by Request Id but it doesn't work. public Requests ...
0
votes
2answers
54 views

Database Querying through a Model

When working with an MVC framework and querying the database from the controller using the model, what is the best practice? Should the model provide a very flexible function to allow the controller ...
0
votes
1answer
119 views

Rails 2.3.x - lazy db querying

I would like to construct a query in ActiveRecord based on GET params and using named_scope. I thought I'd chain some scopes and add conditions based on GET param availability, but I fear this will ...
0
votes
0answers
365 views

Using enum parameters in Criteria query

If I have an enum field in my persisted class, mapped to DB by either ordinal or string, how do I set a criteria param on it? This doesn't work: public static enum Currency { Euro(1, "EUR"), USD(2, ...
0
votes
0answers
40 views

Cannot query records from temporary tables populated thru a procedure

i have a procedure that populates a temporary table thru "insert into" command. After this, i have to query the records in the temp table. The problem is my select does not produce anything. I ...
0
votes
0answers
139 views

Querying in FLuent NHibernate

I'm using Fluent NHibernate. Iv got 3 classes public class employee { public virtual int Id { get; set; } public virtual string FirstName { get; set; } public virtual string LastName { get; set; ...
0
votes
3answers
365 views

Searching for numbers/product codes in Solr

I have a text-field to which i'm feeding normal text that contains product codes (e.g. FI302010, RR220011, etc). I would like to be able to search for these product numbers. I have tried it out in ...
0
votes
1answer
159 views

Should I create multiple services (using the Spring `@Service` stereotype) to do database lookups for different controllers?

I'm not sure where to do database lookups for Spring controllers. It seems to make sense to use the Spring @Service stereotype and create multiple "services" to provide lookup support to controllers ...
-1
votes
4answers
97 views

How fast is it to look up by ObjectId in Mongodb?

I'm looking up ObjectIds everywhere, as if they're cake. Is this OK? _id fields are supposed to be looked up like crazy, right?