The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
4k views

PHP / MySQL Query Builder UI with jQuery?

So, I need to construct a front-facing query builder for a database, but I'm having trouble finding existing code for what I can't imagine is a rare requirement. Basically, I have non-SQL fluent ...
3
votes
1answer
68 views
+100

JavaScript Boolean Search Query Builder Interface Library?

Are there any (good/usable/not ugly) JavaScript/interface libraries for managing the creation of custom boolean style queries, similar to the Google Analytics Advanced Segment interface? Basically, ...
3
votes
1answer
293 views

Help creating a flexible base 'find' method in a service class using the DRY principle

For years now I've been reimplementing the same code over and over (with evolution) without finding some method of cleanly, and efficiently, abstracting it out. The pattern is a base 'find[Type]s' ...
2
votes
3answers
125 views

What are the benefits of using Query Builders

Pardon my ignorance on the matter but what's the point of using Query Builders? Isn't it far more succinct to write one line of SQL instead of 3 lines of AR code: $this->db->query(" SELECT ...
2
votes
1answer
367 views

Jpa QueryBuilder Multiple expressions in where clause not working

I am having an issue with creating queries with javax.persistence.criteria.CriteriaBuilder. I am using EclipseLink 2.1 and an Oracle 10g database. When building a query with multiple restrictions it ...
2
votes
1answer
1k views

How to order by count in Doctrine 2?

I'm trying to group my entity by a field (year) and do a count of it. Code: public function countYear() { $qb = $this->getEntityManager()->createQueryBuilder(); $qb->select('b.year, ...
2
votes
1answer
211 views

What is a good query builder that can parse and rebuild SQL queries on PHP 5.3?

I do not want an ORM. I am comfortable with writing heavily targeted and optimized queries on my own, and I do not want any sort of ORM bloating my code. I am looking for a light-weight, ...
2
votes
2answers
1k views

Open Source query builder tool for Microsoft SQL Server

Okie, I've searched it in SO and I've not found it. Can someone tell me a good open source query builder tool for working with Microsoft SQL Server databases?
2
votes
2answers
147 views

entity framework linq - which should I learn, method-based on query-based?

Just starting getting into Entity Framework and Linq for EF. I'm not sure which of the two query methods I should concentrate on, method-based or query-based? Is there an obvious choice as to which ...
1
vote
1answer
109 views

Doctrine: Convert a createQuery query to createQueryBuilder

This is the current query that I have, and it works fine: $q = $this->_em->createQuery("SELECT s FROM app\models\Sub s LEFT JOIN s.case c ...
1
vote
1answer
51 views

doctrine 2 query if product equals to multiple categories

$categories= array(3,20,24); $qb = $this->em->createQueryBuilder(); $qb->select('p') ->from('\Entities\Productss', 'p') ...
1
vote
2answers
162 views

How to use wildcards in createQueryBuilder?

In my repository class i use: public function getItemsByTag($tag) { $qb = $this->createQueryBuilder('c') ->select('c') ->where('c.tags LIKE %bipolar%') ...
1
vote
0answers
59 views

Doctrine 2 having statement and relationship

Im trying to build a query to get all products with available colors: $qb->select('p', 'pcl') ->from('Entity\Product', 'p') ->leftJoin('p.availableColors', 'pcl', 'WITH')); ...
1
vote
2answers
79 views

Query builder Column alias, without any column in Kohana Framework?

like you can do in a normal query: SELECT id, 'Default' AS Type FROM ... I would like to do that in Kohana, i tried: DB::select('id', array('Default', 'Type'))->from('...') But it thinks ...
1
vote
2answers
1k views

How To Select Distinct Query Using Symfony2's Doctrine Query Builder

I have this code where it retrieve all the categories related to a blog section on my project: $category = $catrep->createQueryBuilder('cc') ->Where('cc.contenttype = :type') ...
1
vote
1answer
360 views

doctrine 2 querybuilder with set parameters not working

this is my query: public function getDetails($userid, $orderby, $sort){ $query = $this->_em->createQueryBuilder() ->select('u') ->from('\Entities\Users', ...
1
vote
2answers
168 views

Kohana 3 Query Builder and Conditional Statements [SOLVED]

$query = DB::select('thing')->from('things')->where('thing', '=', 'something'); if ($other_thing) { $query->and_where('other_thing', '=', 'something else'); } $query->order_by('thing', ...
1
vote
2answers
1k views

How to use WHERE IN with Doctrine 2

I have the following code which gives me the error: Message: Invalid parameter number: number of bound variables does not match number of tokens Code: public function getCount($ids, $outcome) { ...
1
vote
1answer
444 views

NOT IN statement for Visual Studio's Query Builder for TableAdapter

I want to realize a query with the Visual Studio 2008 build in Query Builder for a TableAdapter similar like following (MSSQL 2008): select * from [MyDB].[dbo].[MyView] where UNIQUE_ID NOT IN ...
1
vote
1answer
744 views

DateTime comparison in ObjectQuery.Where

I'm using Entity Framework, and I have a COMMENT entity. A COMMENT has a DATEMODIFIED property, which is a Nullable Date. I'm trying to build a query that will filter COMMENTs by date, so I create a ...
1
vote
2answers
83 views

SQL Server Client App

I'm designing a database for internal use at my company that will store data that is produced by my team members. While SQL Server will be installed only on a single server machine, my team members ...
1
vote
2answers
2k views

Web based visual query builder

I am after a visual query builder along the lines of http://ajax.easyquerydemo.com/. I am using ASP.NET but MVC so would rather something that is not WebForms based like the one in the link. If anyone ...
0
votes
1answer
35 views

Symfony2: How to get the latest reply to a post using QueryBuilder

I known that in sql statement the latest reply can be get by adding "order by created DESC limit 0,1" But how can i get it using QueryBuilder? I have refered to the document of QueryBuilder . There ...
0
votes
0answers
39 views

Stop related entities to be queried in doctrine2 while using QueryBuilder

I am having two entities User and Profile with one to one relationship. $qb = $this->getDoctrine()->getEntityManager()->createQueryBuilder(); $qb->add('select', 'u') ->add('from', ...
0
votes
0answers
57 views

Querybuilder with mixed results and grouping

This is my working code: $qb = $this->getEntityManager()->createQueryBuilder() ->select('t, term, location') ->from('WatraAdminBundle:Trip', 't') ->join('t.term', ...
0
votes
0answers
26 views

how to get a variable get selected bydefault in YUI Query Builder?

I am using YUI query builder.i want an option selected by default when i load page. How can i do it?
0
votes
0answers
31 views

C#: Column Row concatanation in Dataset File Query Builder

I am using a VS2010 C# DataSet .xsd File to load data to my WPF datagrids form a SQLite embedded database. If you Look at the Image I want the result of the query to be like... Sigh cant add it ...
0
votes
1answer
93 views

Doctrine Query Builder not registering parameter?

I have the following code which is throwing the exception Invalid parameter number: number of bound variables does not match number of tokens. Yet when I print the registered parameters, my parameter ...
0
votes
0answers
53 views

doctrine - get the next row?

here is my query: $q = $this->em->createQueryBuilder() ->select('c') ->from('\Entities\Users', 'c') ->getQuery(); $result = $q->getResult(); ...
0
votes
0answers
103 views

Group by query in doctrine with pdo connection of sql server

I am using symfony doctrine with sql server database, I want the result of following query. SELECT t.status AS t__status, COUNT(t.status) AS t__0 FROM TableTimeSheet t GROUP BY t.status So ...
0
votes
1answer
165 views

doctrine 2 - query builder conditional queries… If statements?

My query is doctirne 2. i have a status field in users, private or public. i want to be able to run this query and display all comments where status= public and private only if userid = ...
0
votes
0answers
72 views

Joining tables using QueryBuilder

I'd like to join 2 tables and select one column from it all using the query builder methods, in visual basic.net; so I wrote: Dim qJoin As ObjectQuery(Of DbDataRecord) = ...
0
votes
1answer
81 views

How to embedd the User defined function within the Querybuilder (SQL SERVER 2008)

I have an User defined function which returns a value. I want to add this value to the Column of Select Query within the Query Builder? Can anyone Please help me with example. Example: 'select ...
0
votes
1answer
583 views

How to find documents by multiple conditions for one field with QueryBuilderAPI in Doctrine MongoDB?

I have a data model in MongoDB which I can successfully query by native MongoDB queries. However I'm not able to express them with the Query Builder API of Doctrine MongoDB ODM. This is how my model ...
0
votes
1answer
370 views

Date/time query from Access table ( last month)

I am using the query builder from Visual Studio 2008 to extract data from an Access mdb ( 2003), but I can't make it to work with a datetime field. When I run it with a third party query app I have ...
0
votes
6answers
1k views

How to design a provider independet DAL (.Net)

I am currently developing a query builder application, basically a simple graphical interface that should allow users with no knowledge of SQL to define various queries on a database (joins, select, ...
-1
votes
2answers
171 views

Is there a GUI tool for MYSQL with query builder feature? [closed]

I am using MySQL Workbench. I can't deny that it's a very good tool. Unfortunately it doesn't have a query builder feature. So I wonder if there is another one that has a query builder feature?