The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
18 views

how to do a join in doctrine with createQuiry or DQL

What i want is to do is this query in doctrine : SELECT * FROM `reservation` JOIN res_chauf ON reservation.reservation_id = res_chauf.reservation_id WHERE res_chauf.chauffeur_id =1 in ...
1
vote
2answers
197 views

Entity Framework 5, Code First, Full Text Search but IQueriable via CreateQuery?

I am using .NET 4.5 and EF 5 with Code First approach and now I need to implement Full Text Search. I have already read a lot about it and so far my conclusions are: Stored procedures nor Table ...
0
votes
3answers
144 views

Is there posible to use createQueryBuilder for insert/update? If not, what function should I use?

For now I succeded to create a function that retrieves data from the databse using Doctrine's function createQueryBuilder. Does anybody know if there is a similar function to insert or update the ...
3
votes
2answers
165 views

Doctrine (Symfony 2.0.x) createBuilder one-to-many - no idea how to get the right Entities

I'm searching the net for hours now and can't find a soluting for the following (reduced) problem: I have two entities in my Symfony2-project: /** * ...
0
votes
2answers
96 views

Doctine join query to get all record satisfies count greater than 1

I tried with normal sql query SELECT activity_shares.id FROM `activity_shares` INNER JOIN (SELECT `activity_id` FROM `activity_shares` GROUP BY `activity_id` HAVING COUNT(`activity_id`) > 1 ) ...
0
votes
1answer
35 views

hibernate curious mistake in consult

im doing my first trying in hibernate and i get this question. When i do this consult i get correct result List result = session.createQuery("select t from Tarea t where t.subtipo = 1").list(); ...
0
votes
1answer
68 views

Path expected for join error

I'm attempting to execute the following query and I get the above error. Any ideas? session.CreateQuery("SELECT SUM(NumberHead) AS numberhead " + "FROM Purchase " ...
1
vote
0answers
361 views

org.hibernate.exception.SQLGrammarException: could not insert/select ids for bulk delete

There are the following java-code: EntityTransaction myTransaction = myManager.getTransaction(); myTransaction.begin(); System.out.println(myManager.createQuery("delete from UserProfile where id > ...
1
vote
1answer
112 views

[ERROR] ORA-00918: column ambiguously defined

There are two entities: @Entity @Inheritance(strategy = InheritanceType.JOINED) public class Person implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private ...
6
votes
2answers
384 views

Can't find CreateQuery() method

I'm a new beginner to the entity framework . and i can't find the following method CreateQuery() why i can't find this method ?!!
0
votes
0answers
34 views

CreateQuery constructor with getting parameter list

I'm new here and this is my second question, but as the first, I have a problem already tried to solve in different ways, but have not found a solution, so I'm resorting to you, here we go. My code: ...
0
votes
1answer
114 views

QueryInvalidParametersException: Query has parameter “surveyId” supplied at execution yet the query doesnt make use of this parameter

@NamedQueries({ @NamedQuery(name="surveyResponse.getAverageRatings", query="SELECT AVG(ratings) FROM SurveyResponse surveyResponse WHERE surveyResponse.customerSurvey.surveyId = :surveyId"), ...
0
votes
1answer
181 views

Entity SQL vs CreateQuery where one works and the other errors for the same query

I can use following line of code to create a query that only returns objects of 'ActivityEntity' type.... var q = CreateObjectSet<EntityBase>("EntityBases").OfType<ActivityEntity>() .. ...
0
votes
2answers
214 views

How to select one table using NHibernate CreateCriteria

How can I create the following SQL statement in Nhibernate using CreateCriteria: SELECT distinct top 20 a.* from ActivityLog a left join WallPost w on a.ActivityLogId = w.ActivityLogId left join ...
0
votes
1answer
299 views

Alternative namedquery for nativequery

i need to change my query from native-query to (named-query or create-query) in jpa. em = getEntityManager(); String query = "SELECT kcu.table_Name FROM INFORMATION_SCHEMA.key_column_usage ...
0
votes
1answer
307 views

A select JPA query that ignores the related entities of one-to-many relation, is that possible?

I am new in JPA, so excuse me if my question seems basic. I have an entity called User, which is related to a list of other entities like follow: @OneToMany(cascade = CascadeType.ALL , mappedBy = ...
0
votes
1answer
290 views

JPA EclipseLink getCount of child entity

I am using EL and i keep getting 0 when i run the query below. I want to get the count of applicants (AP) that are currently active. The child entity Applicant is of Person and i want to avoid ...
0
votes
1answer
902 views

Combining LEFT OUTER JOIN and WHERE clause on right table in Doctrine2

I have the following query. $objEmployee = $this->getEntityManager() ->createQuery( "SELECT e FROM MyProjectEntityBundle:Employee e LEFT ...
0
votes
1answer
876 views

Converting SQL to Doctrine DBAL or createQuery()

How can I rewrite this query to Doctrine DBAL query or better to createQuery() structure? When I used createQuery() "data_last" was not recognized as date but as string and generated errors. Maybe ...
1
vote
1answer
782 views

NHibernate CreateCriteria and CreateQuery generates different sql?

I'm new to NHibernate and can't figure out why these two statements generates different sql. the first one only get the ClientInformation (with Information and Client being Proxies) which is what i ...
2
votes
1answer
1k views

How to query by partitionkey in Azure Table Storage?

I have the following TableServiceContext class for books, I want to query the table Books by the partitionKey, please ignore the fact that I'm using the partition key as the book name, this is just ...