The fetch tag has no wiki summary.
1576
votes
13answers
312k views
What's the difference between 'git pull' and 'git fetch'?
What's the difference between git pull and git fetch?
50
votes
4answers
16k 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 ...
8
votes
2answers
2k 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 ...
5
votes
4answers
5k 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 ...
0
votes
3answers
6k views
mysql_fetch_array return only one row
Ok, I have the following code:
$array = mysql_query("SELECT artist FROM directory WHERE artist LIKE 'a%'
OR artist LIKE 'b%'
OR artist LIKE 'c%'");
$array_result= ...
26
votes
6answers
16k 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 ...
0
votes
2answers
3k views
mysql fetch array if no results display message
I am trying to get a database call to show a statement saying no results found if there are no results returned.
How would I go about doing this to my code:-
$getFixtures = mysql_query("SELECT ...
32
votes
3answers
10k 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 ...
6
votes
5answers
12k views
php pdo: get the columns name of a table
How can I get all the column names from a table using PDO?
id name age
1 Alan 35
2 Alex 52
3 Amy 15
the info that I want to get ...
0
votes
2answers
1k views
Using lazy property fetching in Grails / Gorm
is there any way to use lazy property fetching in Grails / Gorm ?
somtehing like:
@Basic(fetch = FetchType.LAZY)
annotation
( it also works with left join fetch?)
(for example lazy loading of an ...
6
votes
1answer
844 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 ...
6
votes
4answers
20k views
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 = ...
5
votes
2answers
91 views
Git: What's the difference between fetching from named remote and fetching from a URL?
Suppose I clone a git repository from the path /path/to/repo. The original repository will be a remote called "origin". I can fetch objects from the origin with the command git fetch origin. This ...
-1
votes
3answers
208 views
SQL: compare two table record by record
I want to compare two tables recordby record. I have two cursor for each table. The code looks like this
Declare Cursor c1 for SELECT * from Table1
OPEN c1
While @@Fetch_status=0
Begin
Declare ...
2
votes
5answers
485 views
PHP script to grab entire line
Thank you for taking the time to read this and I will appreciate every single response no mater the quality of content. :)
I'm trying to create a php script which searches a text file for specific ...
0
votes
5answers
788 views
which is the better way to get the ip
What is the better way of getting the IP address in PHP:
getenv('REMOTE_ADDR');
or,
$_SERVER['REMOTE_ADDR'];
please tell me the difference, if any, between the two.
17
votes
1answer
8k 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 ...
13
votes
2answers
17k 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 ...
6
votes
3answers
4k views
Fetch all events from EventStore EventKit iOS
i would like to know how to fetch all events from an EventStore using EventKit in iOS.
This way i can specify all events for today:
- (NSArray *)fetchEventsForToday {
NSDate *startDate = ...
37
votes
1answer
7k 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 ...
4
votes
4answers
2k 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 = ...
7
votes
2answers
4k 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?
7
votes
2answers
4k 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 ...
6
votes
4answers
3k views
JPA default fetch type
From my understanding @OneToOne and @ManyToOne JPA annotations do an eager fetch. I want these to be lazily loaded in my application, or at least hint at it (which is what hibernate defaults to). I ...
9
votes
2answers
415 views
Implementing bulk record fetching
At the start of my program, I need to read data from a MS Access database (.mdb) into a drop down control. This is done so that whenever the user types in that control, the application can ...
8
votes
4answers
6k 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
2k 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 ...
3
votes
2answers
128 views
Core Data returns a different object instance for the same NSManagedObject each time I fetch it. Why is this?
I have recently noticed that if I fetch a ManagedObject of which I can verify that there is only one in the model and which is not retained anywhere in my application, every time the fetch returns the ...
3
votes
1answer
533 views
Fetching page of url using luasocket and proxy
So far, I have the following piece:
local socket = require "socket.http"
client,r,c,h = socket.request{url = "http://example.com/", proxy="<my proxy and port here>"}
for i,v in pairs( c ) do
...
2
votes
1answer
799 views
Importing a Database to MATLAB error
I am trying to import tables to my MATLAB workspace and it keeps throwing me an error, "Undefined function or method 'fetch' for input arguments of type 'struct'."
This is my code that i am trying to ...
2
votes
3answers
4k views
hibernate @ManyToMany bidirectional eager fetching
I have a question which I think should be pretty common but I can't find an answer.
I have 2 objects: Group and User. My classes look something like this:
class Group
{
@ManyToMany(fetch = ...
2
votes
3answers
203 views
cache.fetch in Django?
Does Django caching have a method similar to Rails' cache.fetch? (http://api.rubyonrails.org/classes/ActiveSupport/Cache/Store.html#M001023)
The rails cache fetch works like:
cache.fetch("my_key") {
...
1
vote
1answer
641 views
Soft reset git bare branches
I have a set of GIT repositories that I always have different activities on differrent branches and they are all pushed to github
the activities are linked to Redmine and would trigger Redmine to ...
1
vote
1answer
1k views
git: setting a single tracking remote from a public repo
I am confused with remote branches.
My local repo:
(local) ---A---B---C-master
My remote repo (called int):
(int) ---A---B---C---D---E-master
What I want to do is to setup the local repo's ...
0
votes
1answer
148 views
Error when fetching URL through proxy in Go
This is related to this other question. I'm fetching a URL through a proxy using this simple code:
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
...
0
votes
1answer
2k views
Am I doing something wrong with Nhibernate Query Over fetch?
I have this
using (ITransaction transaction = session.BeginTransaction())
{
Task tAlias = null;
CompletedTask cAlias = null;
List<Task> tasks = ...
0
votes
2answers
1k views
Connect to an external website with PHP
Let say i have a website (called s1.com..?) with a login form. After you succesfully log on the website, you have a page with some status infos like : Ticket Closed. since...
And then ai have a page, ...
-2
votes
2answers
68 views
This PDO::FETCH_ASSOC` query skips the 1rst result that's returned
I'm transitioning over to PDO prepared statements, and I'm having trouble with the syntax for a basic SELECT query with a WHILE statement.
The foreach statement below echos the correct results, but ...
5
votes
2answers
5k views
How to left join fetch multiple children in Hibernate?
I'm working with hibernate and I'm having troubles creating an hql query that fetches all the children of my object.
For example:
The Object User has a list of Cars and a list of Friends.
To get a ...
5
votes
1answer
527 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(...));
...
2
votes
1answer
731 views
Two mysql_fetch_array statements in
Is there any reason why I couldn't include two mysql_fetch_array statements working on two different mysql query results in one while loop?
The reason is I have two query results from a mysql ...
2
votes
1answer
417 views
Can the facebook API fetch only NEW comments?
Imagine you wanted to fetch the entries on a facebook page and its related comments to bring it into another application. That works fine using the facebook API.
But if you want to track and fetch ...
2
votes
1answer
631 views
Bound FetchMany in Linq to NHibernate
I am using FetchMany for some of my queries and the NHibernate profiler gives me the following error:
WARN:
firstResult/maxResults
specified with collection fetch;
applying in memory!
I ...
2
votes
2answers
10k views
How to Fetch @OneToMany and @ManyToMany Entities
my issue is very related to the following:
Why am I getting a Hibernate LazyInitializationException in this Spring MVC web application when the data displays correctly?
I have the following ...
2
votes
1answer
1k views
How to do join fetching instead of select fectching with EclipseLink?
I've got a OneToOne relation between two entities. This relation is eager by default, but when logging requests, I only see multiple selects, no join appears. Same thing when forcing eager.
Do you ...
2
votes
2answers
266 views
“git push” doing the same as “git fetch” from the remote
My question is the same as this one, but the answer is not clear to me.
I have two git repos A and B in sync (corresponding to the two machines I work on). When I start working in B, I would normally ...
1
vote
1answer
218 views
Saving and Deleting NSManagedObject & NSManagedObjectContext
Three Questions but they are all related. If you like I can divide them into three questions so that you can more credits. Let me know if you'd like for me to do that.
I have the following code ...
1
vote
2answers
927 views
Is it possible to extract metadata from fetched url instead of canonical url?
I have a Facebook like that links to a page on witch I don't have complete control: I can modify the but not the of the page...
So I tried to set the link of the like button on a new page on which I ...
1
vote
2answers
2k views
Fetching “property og” meta tags from URL with PHP
I want to create a posting feature similar to the one Facebook uses (You paste a link into textbox, hit post and it posts a title, description and an image). I realized that it is best to extract the ...
1
vote
2answers
128 views
Fetching data from a site requiring POST data?
There's a very simple website containing just a few elements of which I'd like to retrieve a table. Previously I've used file_get_contents('http://www.example.com') for this exact purpose and ...