The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
0answers
2k views

JPA Hibernate left join fetch generating mutiple queries

I have a jpql query to eagerly fetch multi level associations as follows select distinct s from Singer s left join fetch s.singerIdentifiers si //singerIdentifiers is collection in Singer object ...
3
votes
0answers
925 views

How to get Hibernate FetchProfile to load deep child objects in the hierarchy

I have the same question as someone posted in the Hibernate Community: FetchProfiles. For performance reasons I have a relationship in the data model as follows: ...C -[FetchType.LAZY]-> D -> ...
2
votes
0answers
64 views

How to read title and description of a news websites

Some website like DIGG or NGOOR allow user to input an article or website URL then it will fetch that website title and description, display and images on its page. I searched around internet and also ...
2
votes
0answers
222 views

iOS Periodic Sync with Web Service

Background: I have already written an Android application that periodically syncs a database with a web service (using the abstract threaded sync adapter in the framework). Question: I've read lots ...
2
votes
0answers
219 views

Wrong number of children items returned in join fetch on JPA

I have a JPA OneToMany association @OneToMany(mappedBy = "playlist", fetch = FetchType.LAZY, cascade = CascadeType.ALL) @IndexColumn(name = "intSequence") private List<Track> tracks; in ...
1
vote
0answers
140 views

Fetch all posts from group - php sdk

I am trying to develop a pretty simple Facebook app but I am having some difficulty with fetching all the posts from a specific group. I know theres a lot of open thread about it but it just doesn't ...
1
vote
0answers
68 views

SEO: Google fetch returns blank page (but rendered HTML seems correct)

I usually find all the answers to my question but this time I could not find any. This if actually the first time I post on stackoverflow! Here is my problem. The root of my website: ...
1
vote
0answers
118 views

how to hql “left join fetch” and with

how do when I'm using fetch? "with" does not work. ISession session = NHibernateHelper.GetSession(); string sql = "FROM Filial fi " + "left join fetch fi.LstUsuario usr " + ...
1
vote
0answers
29 views

Fetch thumbnail and article description from link

I'm developing a site where users will be able to post a link of news articles from some other site. I would like the thumbnail and the description to appear on my site. So for example, a user could ...
1
vote
0answers
34 views

fetching data from url and saving in ipad

I need to save a pdf/doc document in ipad,when you a click that link.I tried to fetch data from http://meme.hcl.com/sites/default/files/243347_TroubleShootingSqlserver20052008.pdf and am trying to ...
1
vote
0answers
185 views

java.net.UnknownHostException during fetching in crawl(with nutch 1.4)

I have one link with many external link inside it,when the fetching process start, many external link failed with: java.net.UnknownHostException, i use nutch 1.4 and i set the below setting in ...
1
vote
0answers
322 views

NHibernate Linq.FetchMany, ThenFetch for Dictionary

I want to load data with LINQ like that: var query = session.Query<Campaign>().FetchMany(x => x.Places).ThenFetch(x => x.Stat) But Campaign.Places is a Dictionary and this expression is ...
1
vote
0answers
427 views

403 Forbidden Error from Amazon S3

Another programmer has been working on my project on a new branch. To view his work, I fetched the branch and updated the bundle with bundle install. When I try to rake db:migrate I get a 403 ...
1
vote
0answers
578 views

Avoiding multiple joins on hql with abstract entities

I'm having trouble using hql with the following mapping (classes are between brackets): [Note] @OneToMany [Item]; [SubItem1] extends [Item]; [SubItem2] extends [Item]; [SubItem3] ...
0
votes
0answers
19 views

Nhibernate - partial loading of bags using LINQ

I have this: class Car:Entity { string Make { ... } ICollection<Wheel> Wheels { ... } ... tons of props ... } class Wheel:Entity { Car Car { ... } int Number { ... } int Size { ... } ... ...
0
votes
0answers
14 views

Yahoo pipe using XPath Fetch Page showing null

I'm building a Yahoo Pipe using the XPath Fetch Page module. You can see my pipe here. I can see the right information shown in the Debugger, showing 13 items, but when I run my pipe I'm getting the ...
0
votes
0answers
27 views

Fetch html which is loaded dynamically? python

I am writing a crawler in python which must extract the links to the PDFS listed in this page: http://www.peekyou.com/barack_obama (scroll down, there is a "documents" section with links to pdfs. ) ...
0
votes
0answers
11 views

Realtime hashtag counter with instagram API

I had an idea to create a realtime instagram hashtag counter which would show how much a defined hashtag has pictures. I got succesful with the instragram API part where I fetch the information, but ...
0
votes
0answers
45 views

what's wrong with this simple fetch PDO statement?

What's wrong with this PDO code? It doesn't give me any results although there definitely are some results in the tip table in the database. try{ $this->pdo = new PDO( ...
0
votes
0answers
19 views

PHP & mySQLi - while mysqli_fetch_array not echoing result

trying to echo the rows. i dont get any errors, but it works if i do the second part. <?php $result = mysqli_query($db_connect, "SELECT * FROM items") or die ("Query is invalid." . ...
0
votes
0answers
185 views

access data from facebook using proxy server

I have to develop a facebook application which has to fetch data from facebook via a proxy server. The proxy server is a middle server which channels facebook with the facebook application. It is the ...
0
votes
0answers
42 views

Backbone fetch, calls both error and succes

I'm new to Backbone and I was trying to retrive an JSONP from a nodejs server. My problem is that both error and succes methode are called.Is there any mistake in my code? Any suggestions are ...
0
votes
0answers
36 views

Backbone fetch() fails for IE

I am using Backbone's fetch to get data from a remote server. It works fine for all browsers but IE (of course), as IE requires you to use XDomainRequest instead of XHR for cross site. Do I have to ...
0
votes
0answers
28 views

How to get integer value in jsp file via Excel file?

I have connected my jsp to Excel sheet, and i am fetching the marks to jsp file. But the marks are showing as 85.0 instead of 85 , For example: <%= rs.getString(4) %> How can i get the value ...
0
votes
0answers
74 views

HQL stop fetching children executing inner/left join fetch query

I have a design like entity having children of a type and each of those children has a property of parent entity. Object A Object B (property) Object A (property) Object ...
0
votes
0answers
70 views

GitHub: checkout data to origin, adding data to origin without merge

I have a remote repository and a local one. The local Git repository I also use in StarTeam. My task is to take files from Git origin, after check them out on StarTeam, and then add changes to Git ...
0
votes
0answers
43 views

excel row fetch and populate table

is it possible to fetch entire row to another sheet if it meets the criteria? example: i have a sheet with expenses of different departments date description amount department ...
0
votes
0answers
29 views

Where to place pagination part in JQuery?

I want to develop a Jquery based Ajax pagination. My question is to where to include the pagination part.? Inside the main page Inside the data fetch page I know i can accomplish this either way. ...
0
votes
0answers
30 views

Are Fetched Properties KVO compliant?

Strange behavior into my Core Data application. I have an entity with a fetched property, whose result is stored into the content array of a controller. The first time I run the application, the ...
0
votes
0answers
68 views

How can i show subcategory when hovering on category - dropdown style - categories are taken from SQL

I am restating my problem since i was not so coherent: Purpose: when hovering on a main Category fetched in a list from a my sql table i want to show the subcategories using ul's and li's. All ...
0
votes
0answers
55 views

How can I extract columns of two different tables in SQL format in a same time and put them together in Python with mySQLdb?

I have a database consists of several tables in SQL format. I want to write a python code with MySQLdb module, to extract a column from one table and another from the other one and fetch them ...
0
votes
0answers
178 views

JSON Call to MySQL Improperly Handling Variable

I'm trying to set-up open-source software called pushpool which is essentially a JSON rpc server and for some reason I keep receiving "mysql pwdb query failed at fetch" when attempting worker ...
0
votes
0answers
34 views

Is is possible to fetch related entities in my dynamic JpaRepository query?

Suppose I have a Spring Data repository: public interface MyFancyRepository extends JpaRepository<MyClass, Long> { MyClass findByNameWithSomething(String name); } Is it possible to make ...
0
votes
0answers
38 views

request data from dwr using http client

i want to fetch some data from a website at the given time everyday. Avoiding to check that everyday, i want to programming to solve this problem. But while i try: HttpClient httpclient = new ...
0
votes
0answers
77 views

Core Data query through many "many-to-many relationships

New to Core Data, I'm trying hard to understand how to access and query through multiples many-to-many relationships. Here's the model: http://dl.free.fr/dRqgjMgR4 I would like to get the number of ...
0
votes
0answers
12 views

MySQL: how to log fetchSize

I'm using Solr's DataImportHandler to index data from my MySQL database. There's a config option for fetchSize (which is passed via JDBC driver etc). I'd like to be able to log MySQL operation such ...
0
votes
0answers
111 views

Steps about fetch and execute cycle

Recently I am doing some self-study about CPU. And I find a exercise question from the book, since the structure of the book is messed up, I am not able to solve this question. Here is it: ...
0
votes
0answers
59 views

fetch data from mysql and generate xml and load the same in common template?

i am using this code ! data in db book name,author name <? 02 header('Content-type: text/xml'); 03 04 mysql_connect('localhost','root','admin'); 05 mysql_select_db('test'); 06 07 $sql ...
0
votes
0answers
64 views

Retrieving the content of a collection after fetch

I am trying to retrieve my models from the local storage in a collection. I enter into "success" but sometimes my collection is still empty. I thought "success" meant the collection was well fetched. ...
0
votes
0answers
157 views

backbone fetch always gives error callback in IE

I have a collection in backbone as follows: define([ "jquery","backbone", "models/homeTile" ], function($, Backbone, Model) { 'use strict'; // Creates a new Backbone ...
0
votes
0answers
8 views

import .dll file in visual c # and fetching data

I need to import a .dll file into my already existing program.cs. The .dll file has some list which i need to fetch from it and add it in my combo box. Please suggest
0
votes
0answers
59 views

Cocoa application saving and fetching data from store data

I am very new to cocoa development. But i have worked with iOS programming before. So learning cocoa through the knowledge i know from iOS. I have done a employee login screen tutorial with 2 ...
0
votes
0answers
52 views

Lookahead for row based queries

We are currently working on an application, where we use row based processing of the results. We do this, because the sheer number of results is too large to fit into the memory of the processing ...
0
votes
0answers
36 views

git-svn new branch refetches the whole history

I wanted to create a git clone of a big svn repo with git-svn. My primary problem however is that whenever a new branch is created, the whole history is re-downloaded: "Found possible branch point" ...
0
votes
0answers
32 views

PDO fetch() error

Here's my code: $qer="insert into users (user,first,last,bio,email,pass,date,bd) values ('$name','$first','$last','$bio','$email','$pass','$date','$bd')"; $query=$con->query("select * from ...
0
votes
0answers
107 views

Making questions and answer in PHP which can be edited manually

I am trying to make a system that you can create/edit multiple choice questions along with answers. Now what I have is a table for questions and a table for answers, a field in the answers table code: ...
0
votes
0answers
87 views

Unable to fetch entity from nsset by attribute on subsequent attempts

2 entities: User and Buildings. User has an attribute with type NSSet named buildings I want to retrieve the Buildings entity from NSSet by attribute guid. On the first run of the application, ...
0
votes
0answers
161 views

424 Object Required runtime error on attempting to fetch data from other workbooks and insert into master workbook

The purpose of this script is to fetch data / import data from a specific worksheet in All EXCEL Files in a single Folder. (all excel wordbooks are the same template which is sent out to multiple ...
0
votes
0answers
119 views

Hibernate maxResults with OneToMany Fetch counts children as result rows

I have a class Video that has a OneToMany annotation to another class Comment. @OneToMany(fetch = FetchType.LAZY, mappedBy = "videoId", cascade = CascadeType.ALL, orphanRemoval = true) @Sort(type = ...
0
votes
0answers
145 views

fetch email and display on android textview

I have to develop one android application. Here i have to fetch the email for beloning user and display that email on android textview.how can i develop these.please give me any idea. This is my ...

1 2 3 4