0
votes
0answers
23 views

Any free service to convert relational database to objects? [closed]

Is there any service? Or it's impossible because there are many factors to do this? If there's no services, where can I find information on how to do the conversion?
1
vote
0answers
60 views

Create a database table from a Type. In code. Simply

I've been looking to replace SqlCommand's with Entity framework or Linq-To-SQL. However, they seem to rely heavily on using the designer (which I rather minimize), and in the case of Linq-To-SQL it ...
0
votes
0answers
33 views

GreenDao can't set up database

I'm using GreenDao for my Android project. But there is a little problem! I can't start my application, because there is some failure on my database connection The Error: Could not find Class ...
0
votes
0answers
19 views

ORM from MySQL to JavaScript using CodeIgniter for voting software

PHP doesn't have to be involved, that's just what the rest of the website is built on (code igniter). So my question is this: How can I download from the database all of the voting data surrounding a ...
1
vote
3answers
46 views

How to track position of columns on a DB table

Okay, this is a little bit odd to explain, I'll try my best. I have a DB table (SQL) called versions which contains a list of different operations that are part of a version. For example, version ...
-1
votes
1answer
131 views

Android ORM Database [closed]

I am doing some research for techniches for future apps and am intresteded in Object databases and would to know more about those for the android platform. Can someone point me in the right ...
2
votes
1answer
60 views

Do I need to maintain foreign keys at the database level when using Eloquent ORM?

Eloquent can effectively manage all relationships with Eloquent Models. So, do I really need to maintain foreign key relationships in the database? Does maintaining relationships at the database level ...
2
votes
3answers
44 views

get most discussed forums in rails

I got two classes: Forum and Topic. Forum has_many Topics. How do you get the (lets suppose) 5 most disscused forums? How do you limit it by Date? for example, most disscused this day/week etc. ...
1
vote
1answer
47 views

prefetch limited number of related objects in django

I want to display list of Posts with 5 latest Comments for each of them. How do I do that with minimum number of db queries? Post.objects.filter(...).prefetch_related('comment_set') retrieves all ...
0
votes
1answer
45 views

Fastest way to query a large dataset within Android

I'm about to port an iOS app to Android. The app uses an SQLite database of 150MB supported by core data. Some heavy queries sometimes take up to 10 seconds. Therefore I'm searching for the perfect ...
0
votes
1answer
97 views

Make Entity Framework ignore Discriminator column

I have a simple app with zero inheritance (at least as far as the database is concerned). How can I "tell" this to Entity Framework so that it would stop looking for the Discriminator column? I don't ...
0
votes
1answer
158 views

Symfony2 Doctrine2 - generate Many-To-Many annotation from existing database by doctrine:mapping:import

I want to generate Entities from an Existing Database by using Doctrine tools for reverse engineering you can ask Doctrine to import the schema and build related entity classes by executing the ...
0
votes
1answer
198 views

Symfony2 Doctrine2 - generate One-To-Many annotation from existing database by doctrine:mapping:import

I want to generate Entities from an Existing Database by using Doctrine tools for reverse engineering /* * SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for ...
0
votes
1answer
66 views

Linq to SQL Exception When Record is Updated from Two Different Applications

I am working with two C# Winform applications that use Linq to SQL for database access. All of my database access and queries exist in a DLL project that is referenced and used by both of these ...
1
vote
0answers
129 views

How can I use node-orm2 to model two or more databases with Express?

I'm trying to use node-orm2 as middleware with Express the documentation only shows how you can connect to one database only. I have tried getting Express to use two different middleware layers, but ...
0
votes
1answer
43 views

How to get updated obejcts instantaneously by Hibernate?

I'm not getting updated objects retrieved by hibernate session. e.g. If I update an object by Session B [the object was already fetched earlier by Session A], then I'm not getting the updates made by ...
0
votes
1answer
135 views

MyBatis mapping database and objects together

I am having some trouble with struts and inserting a record into my database Database is like this Here are the maps: <mapper namespace="Employees"> <resultMap id="employeeMap" ...
0
votes
1answer
169 views

buildSessionFactory() method that return Hibernate SessionFactory object is deprecated, how to solve?

I am new in Hibernate and I am studying this ORM framework reading this article: http://www.tutorialspoint.com/hibernate/hibernate_examples.htm I have read all the previous Hibernate tutorial of this ...
0
votes
1answer
44 views

What is the difference between using a database class, db absraction layer and orm?

I've created a database class long time ago always used it in my projects. Something like this: class Database { function query($sqlQuery) { $this->prepare($sqlQuery); } ...
0
votes
0answers
103 views

Strategies for populating database entities from a Json web service/API

The Situation I am working on an iPhone application that interfaces with a php web service to connect to a mySQL database. This database represents a menu hierarchy where a MenuCategory entity has a ...
-1
votes
2answers
78 views

Which Java ORM is suitable for inserting/updating 400k records at once? [closed]

The size of insert, update is at least 0.4 million once. I don't want to use the JDBC, it's very inconvenient. I want to find a high performance ORM framework instead of it, So What ORM framework I ...
-1
votes
1answer
30 views

ORM and DB archival

Suppose if i use a ORM for DB access. Its basically a windows desktop App, with client server architecture. Now i am trying to build archival or backup restore mechanisms. Are these specific to the ...
1
vote
0answers
67 views

When does org.hibernate.Session throw HibernateException?

I am trying to delete a non existent entity in a database but the delete() method doesn't thow any exception. How can I get an error when I try to delete a non existent entity? I have copied my ...
0
votes
1answer
69 views

What do scale and precision mean when specifying a decimal field type in Doctrine 2?

I'm creating a decimal field to hold a financial figure in Doctrine2 for my Symfony2 application. Currently, it looks like this: /** * @ORM\Column(type="decimal") */ protected $rate; When I ...
0
votes
1answer
43 views

Delete function tries to delete foreign key

I got the following problem. When I try to delete my entity it automatically trys to delete the foreign key objects. This is my entity: @Entity public class ScmoKomponente implements Serializable { ...
2
votes
2answers
108 views

Do Django ORM database queries block the server, or are they asynchronous?

I just want to clarify few things. I believe that Django server works asynchronously (because if every request from the client would block server then it wouldn't work), but I know also that the ...
0
votes
3answers
243 views

Hibernate: How to set read-only columns?

I am working with hibernate but I don't know how to force read-only columns. I would like to set idgroup as read only column. Even if I set insertable=false and updable=false, in the hibernate sql I ...
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
1answer
263 views

Null value in Django ORM model object's primary key

I have a Django ORM model that needs to integrate with a legacy database. The model was generated via manage.py inspectdb, and the class definition is like so: class ClientJob(models.Model): id = ...
0
votes
1answer
118 views

Using CakePHP's ORM, “Cannot redeclare class Foo”

Here is my database structure: create table dpt_tutores ( id int primary key AUTO_INCREMENT, nivel varchar(128), apellidos varchar(256), nombres varchar(256), email varchar(512), estado varchar(128) ...
1
vote
1answer
103 views

Python private inheritance? How to trick isinstance()?

Snippet of django core code: class ForeignKey(RelatedField, Field): ... def db_type(self, connection): rel_field = self.rel.get_related_field() if (isinstance(rel_field, ...
0
votes
0answers
96 views

hibernate set transient property in query

Say I have two tables, user and purchases (One to Many) The User entity has a transient property lastPurchase which is used to link the last purchase in the DB (via a date column) Is it possible to ...
2
votes
1answer
155 views

Custom hibernate entity persister

I am in the process of performance testing/optimizing a project that maps a document <--> Java object tree <--> mysql database The document, Java classes, database schema and logic for ...
2
votes
1answer
46 views

How to use DataMapper `NOT LIKE` clause?

I'm using DataMapper in a Sinatra project. I'd like to be able to use a NOT LIKE stament in a DataMapper finder method, but cannot figure out how to do so. One might imagine that this would work: ...
0
votes
1answer
95 views

Rails DB structure for messaging system

I'm developing a messaging system on rails 3. My database structure is roughly as follows: users: id name messages: id body users_messages: user_id message_id ...
0
votes
1answer
59 views

EF with database with no PKs - Good idea/Bad Idea/Fuhgeddaboudit

There is so much conflicting and confusing advice all over the web about this. And I would like to settle this for myself and for any one who will be looking for such information in future. Question ...
-2
votes
3answers
105 views

Alternatives for using EF in MVC [closed]

I have a legacy database which we are going to use as a back end in our new project. The project will be in MVC and the plan is to use EF. I read about EF not being so useful if there are no PKs in ...
1
vote
1answer
41 views

Updating indexes in database with Symfony2 and Doctine

I'm trying to add indexes to my database using the annotation method in my User Entity class, however when I update the meta data and run an update from the command line and then go to phpMyAdmin ...
0
votes
1answer
69 views

Creating Database schema from application model or not?

Generally, I have a question about ORM(s), and the best way for managing enterprise/small applications' database schema and model (Actually, to keep application model and database schema sync always) ...
1
vote
1answer
103 views

Correct modeling historical records in a database

In my applications I have a set of object which stay alive during the whole application lifecycle and I need to create an historical database of them. These objects are instances of a hierarchy of ...
0
votes
0answers
10 views

Sooda generate TargetInvocationException

When i compile this code (I'm use ORM Sooda) using (SoodaTransaction t = new SoodaTransaction()) { //t.Commit(); } the compiler generate the exception ...
0
votes
2answers
75 views

removing database hits when accessing foreign field

I'm creating a dictionary for my model and use the dictionary to make json data. class MyImage(models.Model): ... album = models.ForeignKey(Album) def to_dict(self): result = {} ...
0
votes
0answers
26 views

PHP ORM avoid recursion

how can I avoid the recursion in following code? I have two database tables: Company (company) Point of Sale (pos) with following relations: A company has many pos A pos has one company ...
2
votes
1answer
116 views

What ORM can I use for Access 2007 - 2010? I'm after WPF binding to the tables etc

I've a legacy database that all sites have, it describes specific content in a number of catagory/subcatagory/child item format. Until now, adding/editing the content is either manual work in the ...
10
votes
2answers
419 views

Why are composite keys discouraged in hibernate?

This is from Hibernate official tutorial: There is an alternative <composite-id> declaration that allows access to legacy data with composite keys. Its use is strongly discouraged for ...
0
votes
1answer
46 views

ORMLite change allowGeneratedIdInsert in onUpgrade

I'm using ORMLite in my app. I had to enable the allowGeneratedIdInsert flag for one of my fields (rows) of a class (table). I did this through annotations. Now i also need to do this for users which ...
0
votes
1answer
58 views

multiple joined query with propel

Let's consider following tables: special_product( id product_key - FK to product.key) product( id key name) product_attributes( id product_id FK to product.id description ) My question is ...
0
votes
1answer
30 views

If I use SQLAlchemy ORM, does that mean I stop querying the backend DB directly?

If I use SQLAlchemy's ORM to create objects and store them, does that mean I pretty much also only retrieve the data from the DB via SQLAlchemy? Will the underlying tables created by SQLAlchemy ORM ...
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 ...
1
vote
0answers
172 views

FuelPHP ORM database schema for i18n, opinions/suggestions

While this question might be similar to many others, I'd like to ask for opinions/suggestions on the best approach for i18n specificaly on FuelPHP. So, here is what I've got so far: Database schema ...

1 2 3 4 5 11