0
votes
0answers
16 views

PropelORM and database structure

I need to decide which approach to choose for my MySQL DB. Example: PHOTO ALBUM User - can own photoalbum Group - can own photoalbum (maybe more entities could own photoalbum) Now how to ...
0
votes
0answers
34 views

jpa part of composite primary key also part of composite foreign key

I'm having problems mapping thwo relations between three of my JPA entities. First of all, I show you the database tables involved: Ciclista idciclista (PK) (rest of fields...) Prueba ...
1
vote
1answer
29 views

Staying in the same Shell session with Python

I am building a Python script that will automatically create and arrange my new Django projects. What I'm doing is; create a virtualenv activate the virtualenv with source my_app/bin/activate pip ...
1
vote
1answer
39 views

Django mysql table name did not validate

I added classes to Django app model to create mysql tables. I have 'downloads' table, and 'downloads' column in 'songs' table. When i want to sync db, Django returns me error: CommandError: One or ...
0
votes
1answer
23 views

ORM relationships (possibly Kohana specific)

I have a couple of models, one is a notification and one is a severity. Notifications have a severity. My Notifications table in my database (simplified) is as follows id => int message => ...
0
votes
1answer
20 views

What MySQL datatype corresponds to an embedded object

I have the following in an entity class @Embedded @Valid private Address address = new Address(); How do I make a MySQL datatype for this? Do I have to create a user-defined datatype with ...
0
votes
1answer
92 views

Persisting Entities Mapped to MySQL View in JPA/Hibernate

I have a entity Customer, which is mapped to a view which is defined as a series of joins between Customer, Account, and Person in my database. I am using JSF 2.0 with JPA set up with Hibernate. The ...
0
votes
1answer
40 views

Django standalone database script - Too Many Connections Error

I don't know the conventions to saving or querying django objects in a standalone script so there may be some blatant errors in my code below. Pretty much, the script is a standalone .py file which ...
1
vote
1answer
37 views

PyORMish losing MySQL connection with Flask

I have the following model: class Page(Model): _TABLE_NAME = 'page' _PRIMARY_FIELD = 'id' _SELECT_FIELDS = ('id','title','blurb') _COMMIT_FIELDS = ('title','blurb') And in Flask, I ...
0
votes
2answers
125 views

Easiest way to import MySQL database in nodejs for integration testing

I have an web app built with nodejs and I want to do some integration testing of my API that will involve hitting a live database. Is there any easy way to load & execute an SQL dump file to ...
1
vote
1answer
51 views

Django ORM query GROUP BY multiple columns combined by MAX

I am using Django with MySQL. I have a model similar to the following: class MM(models.Model): a = models.IntegerField() b = models.IntegerField() c = ...
0
votes
2answers
57 views

Working with EAV model in Propel

I have a database with a EAV structure, having this tables : Entity (id, name) Attribute (id, name) AttributeValue(fk_id_entity, fk_id_attribute, value) What I want to do is translate this ...
0
votes
1answer
23 views

Passing variables to a has_one relationship in PhpActiveRecord

I'm using phpactiverecord (http://www.phpactiverecord.org/) in a project. I have the below relationship definded. Is there anyway to pass a variable to it so I can change language_id on the fly? ...
2
votes
1answer
98 views

Propel ORM self referencing foreign keys

Im using Propel ORM and very new to Propel. I need some help selecting data from a table with a query I cant get right. Ive got a table like this (note: not actual table but same principal): ...
1
vote
3answers
57 views

Is there a good reason to use ORM in an MVC environment? [closed]

Having used frameworks with and without ORM, it seems to me that ORM is a redundant layer of abstraction between your models and database wrapper. Most frameworks have uniform database wrappers for ...
0
votes
2answers
103 views

PHP ORM - Security of Redbean?

I'm thinking of using RedBean as an ORM-mapper. Currently I'm using my own implementation which does not work very good as the project is getting bigger and more complex. There however is one ...
1
vote
1answer
77 views

How to convert this MySQL statement to symfony Propel? [closed]

Here's the MySQL: SELECT * FROM tbl1 WHERE name > ( SELECT name FROM tbl1 WHERE id = 3 ) ORDER BY name Here's my best guess at the Propel code but it's not working: $c = new Criteria(); ...
1
vote
2answers
54 views

How to retrieve all records after one with an ID in symfony?

Let's say I have a table that I sort alphabetically in symfony. Each item has a rather random id and I'd like to retrieve all items after a certain ID. For example: Name ID ------------ Apple ...
0
votes
2answers
46 views

Retrieving all ORM records with a given year in a date

So I have a simple model, that has a date property, which is stored in a database as a MySQL DATE value (i.e. 2013-02-19). What is the best way of retrieving all records with a date from year 2012?
0
votes
1answer
108 views

Advice needed for new webapplication project [closed]

TLDR; need some advice on simple member management system, was thinking: MySQL + F3 + Paris + AngularJS + Bootstrap. Either MySQL or a free RESTful cloud database are options. After not being ...
1
vote
1answer
101 views

Rename node.js sequelize timestamp columns

I've just started using sequelize but I'm having a small issue mapping an existing database. By default sequelize creates two datatime columns named createdAt and updatedAt, does anyone know if its ...
0
votes
1answer
49 views

How to store/relate user-specific data (states?) for each model

For instance, if I had a table full of folders—with site-wide values for, say, name and created—and I wanted to allow each user to store their own individual metadata about those folders (e.g. ...
0
votes
2answers
130 views

DataMapper ORM relationships

table1(users) |ID|name |type | |1 |demo |admin | |2 |demoX |client| table2(visits) |ID|admin_id|visitor_id|visit_date|... |1 |1 |2 |2013-01-01|... admin(fk)->users(id) ...
0
votes
1answer
77 views

JPA 2: Exception using @Table annotation

when i try to using @Table(" \" Employee \" ") annotation , it generate the exception. there is following exception Exception in thread "main" javax.persistence.PersistenceException: ...
0
votes
2answers
184 views

Laravel update mysql field with same value

How can I update a record in Laravel, to its same value as before. Have tried the following, but it didn't work, and I wouldn't want to do another query to get the value and set it. $user = ...
1
vote
1answer
162 views

mysql with nhibernate too many connections

i'm runnning nhibernate on .net framework, during testing I receive this error ERROR 91 0 0 0 An exception occurred: cannot open connection NHibernate.ADOException: cannot open connection ---> ...
0
votes
0answers
107 views

.Net library/ORM that returns structured (strongly typed) data from MySQL query?

I try to extract data from a MySQL query using MySQLCommand command object and call the ExecuteReader() method. What I get back is sometimes very time-consuming to parse. For example I like to get the ...
0
votes
3answers
97 views

kohana orm retrieve only specified amount of characters from text column

Currently I am writing a website using Kohana framework 3.3. Today, I wanted to create subpage where user would be able to browse news, however I encountered a small problem with Kohana ORM. I would ...
0
votes
2answers
230 views

sequelize foreign key

When using Sequelize, the following code doesn't really add any foreign key on tables. Is there anyway to force Sequenlize add these foreign key constrains? var MainDashboard = ...
0
votes
1answer
60 views

Composite data with Redbean

I've just read the Redbean Documentation, and it's awesome! But I have some questions before I proceed. I want to create a User data structure composed in a particular way. On the site I'm working ...
2
votes
1answer
70 views

EF: using typeid map entity framework hierarchy

i'm keep getting this error msg: Exception Details: MySql.Data.MySqlClient.MySqlException: Unknown column 'Extent1.RuleType' in 'field list' my mapping: public abstract class AlertRule { ...
0
votes
1answer
247 views

Idiorm (MySQL) - Raw query - SHOW TABLES LIKE

I use Idiorm as ORM for MySQL with PHP. I need to check if a table is created or not. In SQL This works in phpMyAdmin SHOW TABLES LIKE 'ro_globals' What I tried in Idiorm ORM::raw_query("SHOW ...
0
votes
1answer
56 views

Doctrine 2: How to remove the relation as well as the entity in a many-to-many association

I have two entities Category and Image, a category can have many images, so it is basically one-to-many relation, but Image can also be referenced from other entities. That is why I am doing a ...
0
votes
1answer
97 views

Performing Bulk insert into a DB Table using Apache Cayenne

Is there any way to perform bulk insert into a DB table using Apache Cayenne. There are some scenarios for me where I need to perform bulk insert. I am not sure how can we do this in Cayenne. Any ...
0
votes
2answers
272 views

MySQL - ORM Idiorm - Prevent SQL injections

I use PHP and make my SQL calls with an ORM called Idiorm. A request might look like this: $person = ORM::for_table('person')->create(); $person->name = $_POST['name']; $person->age = ...
0
votes
1answer
46 views

node connection to mysql db problems using node-orm

When I use connection without node-orm with node-mysql from this example works. But when I try to make smth like this it crashes. As i understood orm redesigned their api but haven't editted their ...
1
vote
1answer
172 views

Denormalization or normalization (inherited data) in SQL database

I have inherited data objects (for example, User, Employee, Manager and so on). We use our self-written ORM to manage the data in MySql database. How is it better to store the data: in normalized ...
0
votes
1answer
202 views

PHP Database writing performance PDO VS ORM

We need to insert records in mysql quite fast for the purpose of syncing it with an other database. Which performs faster inserts. PHP PDO or some ORM (propel/doctrine)
0
votes
1answer
269 views

SqlAlchemy truncate table with ORM

I have been using orm for my app, and try not to use sql to avoid sql syntax error when changing between different dbms. At the moment I am testing with sqlite and mysql. I figured out to delete a ...
0
votes
1answer
110 views

Create schema from QueryDSL generated beans and queries

Although I'm not a Ruby user, I really liked the ActiveRecord way of defining a schema in code, and being able to both generate it and query it. I know that this can't be exactly replicated in Java, ...
3
votes
1answer
76 views

Ordering results in Doctrine by comparison statement

Summary: Can we do ORDER BY parent_id = id DESC in Doctrine? We have a database table Category which contains hierarchical article categories. The table looks like this: CREATE TABLE IF NOT EXISTS ...
0
votes
1answer
125 views

CRM Releationships MySQL

Our Company is developing a CRM and we came now to the point where we have to decide how we want to handle the releationships. This is an important point because there are going to be tons of them. ...
0
votes
1answer
470 views

connecting mysql with peewee and some issue accessing a table

I'm doing a web development for the first time in my life in linux and it will be later ported onto an embedded system once it works on linux machine. I have a table named Login in mydb database with ...
3
votes
1answer
81 views

MySQL/Python preemptive caching

I run a web app that's written in python and uses mysql as our primary datastore. We have a large table with tens of millions of rows on amazon RDS, and expect it to get 10x larger. We run a lot of ...
2
votes
0answers
120 views

PHP RedBean store bean if not exist one

I am a little confused. I actively use PHP RedBean as ORM within my direct mail service and I run into curious situation - I have a table with unique key constraint (i.e. subscriber_id, delivery_id) ...
0
votes
1answer
114 views

how apply Mysql concat in Propel?

I am trying do a remote filtering of a data grid. the grid have a textfield, where the user enter chars and those are sent to the server to refresh the grid. But my problem is that i am using Propel ...
0
votes
1answer
483 views

Scala Slick: Query using direct embedding doesn't work

I use the following code to request items from a mysql table (The Account class just is a case class representing the database fields) val res = Queryable[Account].map(_.name) val db = ...
2
votes
1answer
154 views

JPA generate tables from entities not doing anything

I am using Eclipse Indigo with Hibernate's JPA-2 implementation. The problem is that when I use that tool to "Generate Tables from Entities" there is no effect at all. I get 45 errors saying my tables ...
0
votes
0answers
64 views

optional days of the week table design

I have the following form, similar to google's calendar event form: Interval (drop down) [Daily, Weekdays, Weekly, Monthly, Yearly] Starts on (date) Ends on (radio) either "Never" or "On (and enters ...
1
vote
1answer
378 views

DataMapper can't delete record because of relation

I have this many-many DataMapper/MySQL setup with Torrent and Tag, as follows: class Torrent include DataMapper::Resource property :id, Serial property :name, String property ...

1 2 3 4 5 7