Tagged Questions
The fetch tag has no wiki summary.
431
votes
7answers
103k views
What's the difference between git pull and git fetch?
What's the difference between git pull and git fetch?
26
votes
3answers
6k views
Linq for NHibernate and fetch mode of eager loading
Is there a way to set the fetchmode to eager for more than one object using linq for nhibernate. There seems to be an expand method which only allows me to set one object. However I need to set it for ...
16
votes
2answers
898 views
Git push fails to github: failed to read object
The story:
I've been developing a RoR-app in both my desktop and laptop. It was quite handy to commit changes made on another, push them to github and fetch & merge on other.
The starting point ...
14
votes
1answer
2k views
Fetch vs FetchMany in NHibernate Linq provider
NHibernate eager loading can be done using Fetch and FetchMany, as described here
http://mikehadlow.blogspot.com/2010/08/nhibernate-linq-eager-fetching.html
What is the difference between these two ...
11
votes
4answers
5k views
PDO::fetchAll vs. PDO::fetch in a loop
Just a quick question.
Is there any performance difference between using PDO::fetchAll() and PDO::fetch() in a loop (for large result sets)?
I'm fetching into objects of a user-defined class, if ...
9
votes
3answers
769 views
specifying fetch strategy (select, join, etc) in nhibernate queryover query
I am trying to create a query using QueryOver, which will fetch a collection using the Select or SubSelect mode. The entity in question is Track. I want to load a collection called TrackPrices, and ...
7
votes
1answer
177 views
How can we customize the default commit message used by the fetch extension?
The default commit message that fetch uses, "Automated merge with ...." is long, ugly and litters the history with local directory paths. I'd like to replace it with a simple "Automated merge" or just ...
7
votes
1answer
411 views
Is there a performance difference between PDO fetch statements?
like in
/* Exercise PDOStatement::fetch styles */
print("PDO::FETCH_ASSOC: ");
print("Return next row as an array indexed by column name\n");
$result = $sth->fetch(PDO::FETCH_ASSOC);
...
7
votes
3answers
4k views
Does “git fetch --tags” include “git fetch”?
A nice and simple question - is the function of "git fetch" a strict sub-set of "git fetch --tags"?
I.e. if I run "git fetch --tags", is there ever a reason to immediately run "git fetch" straight ...
6
votes
2answers
417 views
Google Analytics API: Get specific data using php
I've managed to get some data using:
$ga->requestReportData(44030755,array('pagePath'),array('pageviews','uniquePageviews'));
and iterating over it using foreach.
Here's what's returned:
...
6
votes
2answers
928 views
PHP: LightOpenID, how to fetch account data from provider?
I'm having problems with a small OpenID-library called LightOpenID
.
I can authenticate to almost all providers, but I don't know how to fetch the data from the provider. I only get Array(), eaven ...
6
votes
2answers
8k views
Hibernate fetching strategy - when to use “join” and when to use “select”?
Most Hibernate associations support "fetch" parameter:
fetch="join|select"
with "select" being default value.
How to decide which one to use for which association?
I tried changing all from ...
5
votes
1answer
154 views
Insert to JPA collection without loading it
I'm currently using code like this to add a new entry to a set in my entity.
player = em.find(Player.class, playerId);
player.getAvatarAttributeOwnership().add(new AvatarAttributeOwnership(...));
...
5
votes
1answer
3k views
JPA 2 Criteria Fetch Path Navigation
With JPA 2 Criteria Join method I can do the following:
//Join Example (default inner join)
int age = 25;
CriteriaBuilder cb = entityManager.getCriteriaBuilder();
...
5
votes
1answer
254 views
“git svn fetch” fails, ls-tree dying because of missing tree object
"git svn fetch" does not finish and spews out the following (error) messages:
(dev) martinom :: /var/my/git ‹master*› » git svn fetch
Found possible branch point: http://.../branches/dexter/lib => ...
5
votes
1answer
4k views
Core Data: Query objectIDs in a predicate?
I am fetching a set of objects from a Core Data persistent store using a fetch request and a predicate. My current predicate simply checks whether an attribute is >= a certain value. This all works ...
4
votes
5answers
79 views
PHP, MYSQL: Order by date but empty dates last not first
I fetch an array with todo titles and due dates from MySQL. I want to order it by date and have the oldest on top. But there are some todos without a date. These todos I don't want to show at first ...
4
votes
3answers
63 views
PHP/mySQL: mysql_query with SELECT, FROM, and WHERE
I am trying to set $nextPageID and $nextPageTitle with the following code. Unfortunately they are not getting set.
$pageCategoryID = 1;
$nextPageOrder = 2;
$fetchedNextPageData = mysql_query("
...
4
votes
1answer
70 views
Git: What do the numbers reported by `git fetch` mean?
When running git fetch, that gives some numbers:
$ git fetch upstream
remote: Counting objects: 77, done.
remote: Compressing objects: 100% (23/23), done.
remote: Total 47 (delta 19), reused 39 ...
4
votes
2answers
114 views
iPhone CoreData: Sort with umlauts
I have an app that fetches data (a list of countries) from an sqlite database.
The countries are in German and contain umlauts, for example Österreich. I want to fetch those countries sorted by name ...
4
votes
2answers
383 views
MySQLi: query VS prepare
There is something I don't quite understand it at all which is prepare and query in mysqli.
This one is using mysqli::query to process the query and it has been known of lacking security:
public ...
4
votes
3answers
1k views
Using NSPredicate to fetch exact NSDate from NSManagedObjectContect
I'm trying to fetch results of my entity "MeterReading", which has two properties, "timestamp" and "reading". "timestamp" is an NSDate. I'm now trying to fetch an object with an exact date.
...
4
votes
3answers
2k views
Why does git fetch via hudson fail, while git fetch via the command line works?
I'm trying to fetch a read-only git repository from github and have it be built via hudson. This process is failing.
This is the hudson output:
Started by an SCM change
Checkout:workspace / ...
4
votes
4answers
143 views
returning a lazily-computed scalar, in perl
I'm trying to add some functionality to our code base by using tied scalars.
We have a function which is specified to return scalars. I thought I could add some features to the system by tie-ing ...
4
votes
1answer
1k views
Get object by its Uid in WPF
I have an control in WPF which has an unique Uid. How can I retrive the object by its Uid?
Thanks in advance
Jose
4
votes
4answers
4k views
How to download via HTTP only piece of big file with ruby
I only need to download the first few kilobytes of a file via HTTP.
I tried
require 'open-uri'
url = 'http://example.com/big-file.dat'
file = open(url)
content = file.read(limit)
But it actually ...
3
votes
3answers
111 views
Why does FETCH FIRST N ROWS not work in combination with WITH statement?
I have the following SQL statement which does not run on my DB2 database:
WITH a AS (
SELECT * FROM sysibm.systables
)
SELECT a.* FROM a
FETCH FIRST 10 ROWS ONLY
Without the FETCH statement it ...
3
votes
4answers
289 views
Perl, how to fetch data from urls in parallel?
I need to fetch some data from many web data providers, who do not expose any service, so I have to write something like this, using for example WWW::Mechanize:
use WWW::Mechanize;
@urls = ...
3
votes
2answers
229 views
iPhone core data - fetched managed objects not being released on device (fine on simulator)
I'm currently struggling with a core data issue with my app that defies (my) logic. I'm sure I'm doing something wrong but can't see what.
I am doing a basic executeFetchRequest on my core data ...
3
votes
1answer
113 views
How to determine the number for FetchBatchSize in OpenJPA?
OpenJPA provided some parameter in the FetchPlan.
(http://openjpa.apache.org/builds/1.2.0/apidocs/org/apache/openjpa/persistence/FetchPlan.html)
And I was stuck in one of them, the FetchBatchSize.
...
3
votes
3answers
266 views
Strange behavior with git fetch
I'm getting a big problem with GIT fetch...look this
$ git fetch
From server:project
422b4cb..a04c062 master -> origin/master
$ git show-ref
ba113be885e66a5306d1646cd3db0801170c04f8 ...
3
votes
1answer
237 views
Why Fetch should be the last clause in Linq Nhibernate query
Fetch should be the last clause in Linq based on Mike Hadlow's blog post:
Note that if you want to mix Fetch
with other clauses, Fetch must always
come last.
So, if Fetch is just indicating ...
3
votes
2answers
406 views
Git “Fetch URL” and “Push URL”, whats the difference?
When would the Fetch URL and Push URL not be the same for a certain remote?
For example, when i run git remote show central for a remote named central, the output looks like:
* remote central
...
3
votes
4answers
208 views
How can the leecher do this?
The original website: http://www.vnedoc.com
The leecher's website: http://www.vipa1.com
As you can see they are completely the same except for the author (sangsang -> trangxinh) and the logo (v.v.v). ...
3
votes
1answer
336 views
django-orm case-insensitive order by
I know, I can run a case insensitive search from DJango ORM. Like,
User.objects.filter(first_name__contains="jake")
User.objects.filter(first_name__contains="sulley")
...
3
votes
1answer
92 views
Git Remote Repository Check-Out Problem
I've just started using Git and have never used a versioning system before. I am trying to setup a git repository on my web server and one on my local computer.
I am doing the following on the server ...
3
votes
1answer
2k views
Hibernate: Overriding mapping's EAGER in HQL?
It's possible to override LAZY in HQL using LEFT JOIN FETCH.
FROM Obj AS obj LEFT JOIN FETCH obj.otherObj WHERE obj.id = :id
Is it also possible to override EAGER? How?
3
votes
3answers
839 views
Hibernate - Avoiding unnecessary join when using foreign key in where clause
Hi
I try to optimize the database queries in Hibernate, but I found a blocker:
<class name="SupportedLanguageVO" table="AR_SUPPORTED_LANG" >
<cache usage="read-only"/>
<id ...
3
votes
1answer
2k views
MySQL fetch next cursor problem
I have a problem fetching values from a MySQL cursor.
I create a temporary table which is a mere copy of another table (the original table has a variable name, that's passed as the procedure's ...
3
votes
2answers
2k views
git refusing to fetch into current branch
I set up a remote repository and I can push new changes to it, but I cannot fetch from it, I always get the (rather cryptic) error message:
fatal: Refusing to fetch into current branch ...
2
votes
2answers
69 views
Backbone.js fetch() large collection causes script to freeze
I have a Jobs table view that displays all the jobs of a user. The Jobs collection fetch() can potentially return contain thousands of records. I ran a test and inserted 1000 Job records in the DB ...
2
votes
1answer
41 views
Prepared statements error
During debug process, I noticed that script dies on $stmt->fetch() or die($stmt->error); line. There is no error in PHP log. Also it doesn't echo any error. Do you see any wrong piece in code?
...
2
votes
4answers
55 views
mysql Erorr when use select ?
i have a problem , each time i try to do select and fetch this error show
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to ...
2
votes
1answer
131 views
Getting constantValue: unrecognized selector sent to instance error
Getting this error with my fetch's predicate
2011-08-13 13:49:12.405 Codes[16957:10d03] NSlog Array: code BETWEEN {"06", "07"}
2011-08-13 13:49:12.407 Codes[16957:10d03] -[NSCFString constantValue]: ...
2
votes
2answers
96 views
Lua : Fetch a webpage
I want to fetch a webpage and get the result in a string, but I don't know how to do it. I search online and didn't find how to do it.
2
votes
1answer
211 views
NHibernate: Why does Linq First() force only one item in all child and grandchild collections with FetchMany()
Domain Model
I've got a canonical Domain of a Customer with many Orders, with each Order having many OrderItems:
Customer
public class Customer
{
public Customer()
{
Orders = new ...
2
votes
3answers
340 views
NHibernate ThenFetchMany is retrieving duplicate children
I have a parent object with a child collection containing one element, the child collection contains a "grandchild" collection containing 3 elements.
I am loading the parent object from the database ...
2
votes
1answer
287 views
git fetch/merge non-fast-forward changes?
Guess I've a feature branch (so not master) which I changed (e.g. amend a commit, rebased or so) so it has non-fast-forward commits waiting for fetch/merge.
How can I do this?
When I git fetch, git ...
2
votes
4answers
695 views
PHP, Trying to get property of non-object in
on Control page:
<?php
include 'pages/db.php';
$results = mysql_query("SELECT * FROM sidemenu WHERE `menu_id`='".$menu."' ORDER BY `id` ASC LIMIT 1", $con);
$sidemenus = ...
2
votes
3answers
154 views
Create Get Set Properties from Table Name for Views in Class
The below code is a quick script in T-SQL which builds Get Set properties for use in a CLASS:
DECLARE @COLUMN_NAME varchar(250)
DECLARE @DATA_TYPE varchar(250)
DECLARE c1 CURSOR FOR
select ...