Tagged Questions

31
votes
5answers
3k views

Which ORM should I use for Node.js and MySQL?

I'm rewriting a project to use Node.js. I'd like to keep using MySQL as the DB (even though I don't mind rewriting the schema). I'm looking for a simple-to-use, reasonable-performance ORM, which ...
13
votes
1answer
2k views

Bulk insert with sqlAlchemy ORM

Is there any way to get sqlalchemy to do a bulk insert rather than inserting each individual object. i.e., doing: INSERT INTO `foo` (`bar`) VALUES (1), (2), (3) rather than: INSERT INTO `foo` ...
11
votes
2answers
680 views

Django “Cannot add or update a child row: a foreign key constraint fails”

I have a model Coupon, and a model Photo with a ForeignKey to it: class Photo(models.Model): coupon = models.ForeignKey(Coupon, related_name='description_photos') ...
10
votes
3answers
5k views

Doctrine - How to print out the real sql, not just the prepared statment?

We're using Doctrine, a PHP ORM. I am creating a query like this: $q = Doctrine_Query::create()->select('id')->from('MyTable'); and then in the function I'm adding in various where clauses ...
10
votes
1answer
2k views

Can Hibernate work with MySQL's “ON DUPLICATE KEY UPDATE” syntax?

MySQL supports an "INSERT ... ON DUPLICATE KEY UPDATE ..." syntax that allows you to "blindly" insert into the database, and fall back to updating the existing record if one exists. This is helpful ...
8
votes
5answers
188 views

How established are ORMs (object relational mapping) in the world of databases

I'm not a database admin or architect, so I have to ask those who do it 24/7. How established is the concept of an ORM (object relational mapping) in the world of database administration and ...
7
votes
1answer
632 views

Why does Hibernate insert a parent row with a foreign key without inserting the child row?

I'm hoping someone has run into this problem before and can help me out. Basically, Hibernate is inserting a parent row (with an ID pointing to a child row), but not inserting that child row with the ...
7
votes
1answer
226 views

Can Django ORM do an ORDER BY on a specific value of a column?

I have a table 'tickets' with the following columns id - primary key - auto increment title - varchar(256) status - smallint(6) - Can have any value between 1 and 5, handled by Django When I'll do ...
7
votes
4answers
253 views

With a created by timestamp, is it better to have the DB manage it, or the application?

We have your bog standard Java app under development, and a lot of the records we're creating (Hibernate entities in MySQL) have 'created' and 'modified' timestamps on them. Now, me and one of the ...
6
votes
3answers
243 views

mysql for dummies

I just started using MySQL and I just can see myself woking with strings! I mean the compiler can't catch errors like this and it's just a mess! Is there a wrapper or some kind of class I can add that ...
5
votes
1answer
2k views

JPA: how do I persist a String into a database field, type MYSQL Text

The requirement is that the user can write an article, therefore I choose type Text for the content field inside mysql database. How can I convert Java String into MySQL Text Here you go Jim Tough ...
5
votes
2answers
267 views

Is Data Mapper a more modern trend than Active Record

I've come across a couple of ORMs that recently announced they are planning to move their implementation from Active Record to Data Mapper. My knowledge of this subject is very limited. So a question ...
5
votes
2answers
442 views

Hibernate auto increment field for multiple databases

I have a Java object with a field that needs to be auto-incremented in the database. This field is not a primary key, just a field that needs to be auto-incremented. My question is what value I need ...
5
votes
6answers
7k views

Enum in Hibernate, persisting as an enum

In my MySQL database, there's the column "gender enum('male','female')" I've created my enum "com.mydomain.myapp.enums.Gender", and in my Person entity I'm defined "Gender gender". Now I'd want to ...
5
votes
7answers
1k views

Best ORM option from ASP.NET MVC to mySQL

I have been using Linq-to-SQL. What is a good option for working with mySQL? I have been looking at NHibernate, Entity Framework, etc. Some comparisons (pros, cons) would be helpful
4
votes
1answer
128 views

SQL parser in PHP?

UPD: Admin changed the title and I've found the solution: http://code.google.com/p/php-sql-parser/ I'm trying to convent sql query to php array. For example: SELECT col_name FROM tbl_name WHERE ...
4
votes
1answer
6k views

How to annotate MYSQL autoincrement field with JPA annotations

Straight to the point, problem is saving the object Operator into MySQL DB. Prior to save, I try to select from this table and it works, so is connection to db. I think there is some configuration ...
4
votes
2answers
369 views

Decreasing queries in MySQL with many one-to-many relationships (ORM)

I'm currently designing an application using PHP and MySQL, built on the Kohana framework. I'm making use of the built in ORM and it has proved to be extremely useful. Everything works fine, but I'm ...
4
votes
4answers
1k views

Hibernate / MySQL Bulk insert problem

I'm having trouble getting Hibernate to perform a bulk insert on MySQL. I'm using Hibernate 3.3 and MySQL 5.1 At a high level, this is what's happening: @Transactional public Set<Long> ...
4
votes
7answers
314 views

What is an ORM in a web application?

I recently got a reply from a server company asking if we are using an ORM in our application which does all the work of sifting application side (like Rails) or if we write reams of SQL, embedded ...
3
votes
1answer
143 views

DBIx::Class: Only select results where has_many greater than zero

In our MySQL database, I have a third_party_accounts table and it has_many third_party_campaigns. However, not all accounts will have campaigns. What I would like to do in DBIx::Class is select only ...
3
votes
1answer
61 views

In SQLAlchemy, how do I create a ForeignKey relationship across 2 different .py files?

In user_models.py, I have this: class Users(Base): __tablename__ = 'account_users' id = Column(Integer, primary_key = True) username = Column(String(255), nullable=False) ...
3
votes
2answers
46 views

After I create my tables using SQLAlchemy, how can I add additional columns to it?

This is my file so far: from sqlalchemy import create_engine, ForeignKey from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import relationship, backref from sqlalchemy ...
3
votes
1answer
84 views

Java Hibernate Cascading Issue

---- Introductionary information and problem domain ---- Basicly I have 3 tables in a database: 'User', 'Item', 'ItemsPerUser'. Table User: username (PK); password; email Table Item name (PK) ...
3
votes
1answer
60 views

Is there a workaround in sqlalchemy for loading a table from DB without any primary keys?

I have a situation where i load all tables from legacy database. but it gives an error since it does not have any primary keys. Can anyone give me a solution for this error ?
3
votes
2answers
193 views

PHP/MYSQL - How are Database Level Constraints handled in Application

I have looked and seen related questions the general question of handling database constraints within the application vs native database constraints, but my question is much more pointed and specific ...
3
votes
1answer
154 views

Anyone know of a good PHP ORM that DOES NOT use PDO?

I'm building a webapp for a department on a large college campus that will eventually be run on the enterprise servers ( I use the term 'enterprise' loosely ). The problem is that the admins have ...
3
votes
1answer
93 views

foreign-key on a table not in the database, with ORM

I have a static table entry that's shared by several databases/website. By static, I mean the data is read but never updated by the websites. Currently, all websites are served from the same server ...
3
votes
1answer
1k views

Sorting by foreign table value with Kohana ORM

Is there any way to sort (or order by) in ORM by using a value from a foreign table? Can you do something like the following: ORM::factory("table")->order_by("table.foregin_table.column" , ...
3
votes
2answers
328 views

@Column(unique=true) does not seem to work

Even though I set the attribute to be @Column(unique=true), I still insert a duplicate entry. @Entity public class Customer { @Id @GeneratedValue(strategy = GenerationType.AUTO) ...
3
votes
5answers
811 views

CRUD Class for PHP (Simple but will Allow Relational Data)

I am building a database of products and manufacturers. I already have the database layout done. I am looking for a simple CRUD class that will let me setup Manufacturers and Products and create the ...
3
votes
2answers
1k views

Kohana 3 ORM: How to get data from pivot table? and all other tables for that matter

I am trying to use ORM to access data stored, in three mysql tables 'users', 'items', and a pivot table for the many-many relationship: 'user_item' I followed the guidance from ...
3
votes
1answer
503 views

Hibernate doesn't generate cascade

I have a set hibernate.hbm2ddl.auto to create so that Hibernate creates the tables in mysql for me. However, it doesn't seem that hibernate correctly adds Cascade on the references in the table. It ...
3
votes
2answers
269 views

Django ORM dealing with MySQL BIT(1) field

In a Django application, I'm trying to access an existing MySQL database created with Hibernate (a Java ORM). I reverse engineered the model using: $ manage.py inspectdb > models.py This created ...
3
votes
2answers
2k views

Hibernate Relationship Mapping/Speed up batch inserts

I have 5 MySQL InnoDB tables: Test,InputInvoice,InputLine,OutputInvoice,OutputLine and each is mapped and functioning in Hibernate. I have played with using StatelessSession/Session, and JDBC batch ...
3
votes
3answers
655 views

Eclipse + MySql + Hibernate, a good intro?

I'm looking for a tutorial explaining how to work with these 3 technologies, found this one, but it's working with HyperSql DB (yeah, I edited hibernate.cfg.xml to connect with MySql... but I just ...
3
votes
2answers
753 views

No mapping for LONGVARCHAR in Hibernate 3.2

I am running Hibernate 3.2.0 with MySQL 5.1. After updating the group_concat_max_len in MySQL (because of a group_concat query that was exceeding the default value), I got the following exception ...
3
votes
2answers
2k views

Does Hibernate support the limit statement in MySql?

I am working on a project which uses Java,MySql,Struts2 MVC and Hibernate. I tried using limit statement in hql query but its not working properly. Select t from table1 t where t.column1 = :someVal ...
3
votes
3answers
926 views

Doctrine ORM: Create Table Like Another

Is there any way, when using Doctrine, to create a table like another? I know in MySQL there is a function to do so: CREATE TABLE user2 LIKE user; and tables user and user2 will be identical. Can ...
3
votes
2answers
4k views

Hibernate: Create Mysql InnoDB tables instead of MyISAM

How can I get Hibernate (using JPA) to create MySQL InnoDB tables (instead of MyISAM)? I have found solutions that will work when using Hibernate to generate an SQL file to create the tables, but ...
3
votes
1answer
2k views

JPA native query for LONGTEXT field in a MySQL view results in error

I have the following JPA SqlResultSetMapping: @SqlResultSetMappings({ @SqlResultSetMapping(name="GroupParticipantDTO", columns={ @ColumnResult(name="gpId"), ...
2
votes
1answer
75 views

How to load a collection with limited number in Sqlalchemy?

I have two tables. With Sqlalchemy, I map them to two classes: class A(base): ... id = Column(BigInteger, primary_key=True, autoincrement=True) class B(base): ... id = Column(BigInteger, ...
2
votes
2answers
81 views

How to handle belongs_to relation in Kohana ORM

Let's say I have 2 models: class Model_Student extends ORM { protected $_table_columns = array( 'student_id' => array(), 'first_name' => array(), 'last_name' => ...
2
votes
1answer
56 views

mapping one class to two tables from different database in SQLAlchemy

I want to make a management script which read a lot from slave db, surely replicated from master, and write sometimes into master db. Tables that I'm accessing are the same. one from slave, and one ...
2
votes
1answer
399 views

Dapper micro ORM, database agnostic and MySql Guid type

I am experimenting Dapper on a pet project. I am using SQLite to run all the tests and MySql for "production". However I am not sure how to best use Dapper to handle database agnostic situation. The ...
2
votes
2answers
168 views

Can I control the GROUP BY in django 1.3's orm?

I think this will best be explained with an example. Here is what the data would looks like: |project | |id|name | |1 |some project | |2 |my other project| |run ...
2
votes
1answer
100 views

Retrieving only some fields in RedBean

I'm using RedBean ORM to write some code and I was wondering if i can load/retrive only some fields from db table. I know there is a load method but it gives whole table as bean. I wish to get only ...
2
votes
1answer
699 views

Doctrine 2 multiple primary keys

For some reason doctrine is trying to insert an index called primary instead of actually adding a primary key on my MYSQL database, this is what Doctrine generates: CREATE UNIQUE INDEX primary ON ...
2
votes
1answer
535 views

Doctrine custom data type

I'm developing application with Symfony2. Symfony2 is using Doctrine 2 for DBAL and ORM. As far as I know Doctrine2 doesn't have suport for BLOB data type. However I want to implement BLOB support ...
2
votes
2answers
717 views

JPA query exception

I have a query builded with EntityManager: Query q = em .createQuery("SELECT * FROM :table WHERE username = :username AND password = MD5(:password)") .setParameter("table", ...

1 2 3 4