The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
31 views

How to represent a legacy database using Hibernate?

I have the follow legacy database structure and content: order parameter value -------------------------------- 1 user_login user 1 user_password 123456 1 user_level ...
0
votes
2answers
53 views

How to gracefully handle “Mysql2::Error: Invalid date” in ActiveRecord?

I'm building a Rails 3.2 app upon a legacy database which also has some broken records in different tables. One of the issues giving the most headache is that it includes invalid dates. I've setup a ...
0
votes
0answers
29 views

How do I work with a LEGACY database in Rails?

I'm working on a Rails web site that profiles stock mutual funds and ETFs. I ALREADY HAVE a separate Ruby script that runs nightly and populates a Postgres database with data on these mutual funds ...
0
votes
3answers
50 views

Convert Legacy Text Databases to SQL

At my office we have a legacy accounting system that stores all of its data in plaintext files (TXT extension) with fixed-width records. Each data file is named e.g., FILESALE.TXT. My goal is to bring ...
0
votes
0answers
31 views

multiple foreign keys on rails models with legacy database

I have 2 models that connect to legacy databases: class Fyf003 < ActiveRecord::Base belongs_to :fyf006, :foreign_key => ['YARD_NUMBER', 'LOT_NUMBER'] establish_connection "turnkey" end ...
0
votes
0answers
62 views

RoR legacy database - associations crash system down

I'm struggling with my Ruby on Rails App that has a legacy database. It works in general but now I'm trying to show the associations created in the database. The two relevant scaffolds are called ...
0
votes
1answer
61 views

Strategies for Rails development/test development with complex legacy schema

When developing a Rails app with a legacy schema that is in-use by an existing application, if tables have NOT NULL constraints on foreign id columns throughout the schema, in order to create/save ...
0
votes
1answer
232 views

grails with legacy database. foreign key as part of primery key

I have faced with problem of using legacy database. I have two tables connected with relation : one – to – many: Table Subscribers: create table SUBSCRIBERS ( SUBSCRIBERCODE VARCHAR2(100) not null, ...
0
votes
1answer
288 views

using grails with legacy database

I faced with problem of using Grails with legacy Oracle database. I have legacy table TARGETTYPES with primary key text column TARGETTYPECODE: CREATE TABLE "TMS"."TARGETTYPES" ( ...
0
votes
1answer
424 views

Setting table name in namespace model

I have some namespaced models which I'm trying to override the default rails table name for them because I'm connecting to an existing legacy database. My models are: /app/models/licenses.rb ...
0
votes
0answers
76 views

grails. can't use legacy table

I try to program new User Interface for managing legacy database (Oracle) I have two Oracle table Checktypes and Targettypes I have two domain classes: First domain class: package tmsconf class ...
0
votes
1answer
44 views

Fluent nhiberante mapping for legacy tables

How to define fluent nhibernate mapping for the Legacy tables. I have four table CTType(id GUID, Name varchar(100), DateOFbirth datetime) CTType_Legacy(id GUID, CTType_Legacy_id identity int) ...
0
votes
0answers
224 views

orm.xml overriding annotations?

I am using Hibernate 4 and working with an ugly legacy database. We have entity Foo of which there are several subclasses. These are all in separate tables, and a pre-insert trigger actually ...
0
votes
1answer
75 views

Simple associations with a legacy database in Rails 3?

I am working with a legacy database and am also reading through the Rails guides on associations. I have two models. A diary model and an animal model. diary.rb class Diary < ActiveRecord::Base ...
0
votes
1answer
119 views

custom authentication backend for legacy db

Since I'm working with a legacy database I should use another model instead of the default Django contrib.auth.models.User for authentication. My model has an id field (id = ...
1
vote
2answers
443 views

Rails 3 - Column Names (Legacy Database) [duplicate]

Possible Duplicate: Alias for column names in Rails I'm writing a module of ActiveRecord models to access a MySQL legacy database. My problem is that the database has a column naming ...
2
votes
0answers
166 views

CQRS with Legacy Systems

I'm looking to convert a relatively new web-based application with a clear domain model over to more of a CQRS style system. My new application is essentially an enhanced replacement of an older ...
4
votes
1answer
5k views

Using raw sql queries in Rails 3 application?

I am working on migrating a legacy database into my Rails application (3.2.3). The original database comes with quite a few long sql queries for reports. For now, what I would like to do it use the ...
1
vote
1answer
314 views

Issues querying date column from legacy Oracle database and ActiveRecord

I'm new to rails and still learning how it all works. I'm trying retrieve a list of years from a date column in an legacy Oracle database so I can get a list of all the years an object has been ...
1
vote
2answers
241 views

Ruby on Rails adding double quotes to “find” function

I'm new to ruby on rails, and I'm having an issue with the find function. I created a new web app which connects to a legacy Oracle database using the oracle enhanced adapter gem. When I run the ...
0
votes
1answer
297 views

NHibernate, save null reference value in DB as 0 (zero)

I found this example of a tuplizer to do save 0 when saving null relationships. This is needed since I'm working on a app on a legacy database schema. I tried the tuplizer here: ...
2
votes
0answers
478 views

Rails3 and ActiveRecord with legacy database: JOIN not returning other table columns

I have a legacy database that contains two different tables (tbl_players and tbl_player_ratings) that link to one another on a common column (player_key). My problem: With Rails3, when I attempt to ...
2
votes
1answer
259 views

Dealing with column conversions in Ruby ActiveRecord

Dealing with a legacy database, I've come across a column in a SQL Server database where the date is stored as a decimal. E.g. 2011-04-23 is stored as 20110423.0. Is there a general ActiveRecord ...
1
vote
0answers
373 views

Legacy database connection on Rails 3.1.3 [closed]

I am using the following version of ruby and gem: # ruby -v ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux] # gem -v 1.8.10 When i upgrade my application from 3.0.11 to 3.1.3 there is no ...
1
vote
1answer
258 views

Grails project: Gorm or JPA/Hibernate annotations for legacy db mapping?

In a grails app, I have to create a bunch of grails domain classes mapped to a very old db. This very old db is using a lots of "funky" unreadable names for tables and columns. These tables contains ...
2
votes
0answers
206 views

Legacy database mixes primary and foreign keys: update error “The property is part of the object's key information and cannot be modified”

Consider the following tables: create table master ( nr number(10,0) identity primary key lastmodified date scn number(12,0) -- update from sequence with every update ) create table details ...
0
votes
1answer
109 views

New Rails app drawing some data from legacy tables

I have a new rails app which needs to access data from a legacy table called "Doo_dad", with an autoincrementing primary key called "id", and a string field called "name". So I created a new model ...
0
votes
1answer
77 views

Porting to Django, Support for legacy user database

I am porting my website from raw php to Django. I have used inspectdb to create models for the existing database. The problem that has come is that earlier I was registering the users and saving their ...
0
votes
1answer
130 views

Legacy File Schema - Reverse Engineering

I'm currently in the process of converting over 20k database tables from Corel Paradox 4.0 format (DOS Based, with a .db extension) to SQL databases, and rather than using off the shelf software, I'm ...
1
vote
1answer
146 views

Legacy databases from Hell [closed]

I'm a VFP developer that has just come of retirement to face a bunch of legacy apps from hell so any help/input would be much appreciated. It's a total of 14 different business apps running a mix of ...
0
votes
1answer
108 views

Make ActiveRecord append some SQL automaticly

[updating question to clarify] Can I create a model in Rails 3/3.1 and make ActiveRecord automatically use/append some joins I configured to that model? Ex: Use code like this: class Component ...
3
votes
1answer
1k views

Problem mapping Grails Domain class to legacy database with TEXT field

I am trying to build a set of domain classes for a legacy database using Grails 1.3.7 and MySQL 5.1.56. I am specifying the MySQL connector in the BuildConfig.groovy file as ...
1
vote
1answer
246 views

NHibernate on a table with two “primary” keys

I'm learning NHibernate in order to layer it over a rather peculiar legacy database. Other applications use the same live database, so I can't make changes that will affect them. I've run into a ...
0
votes
1answer
101 views

Entity Framework 4.1 - Mapping bad schema

So I have a badly formatted schema that I can't touch right now because of a lot of legacy code dependencies. Supposed I have a table Test and it has a column IsValid that is declared type int. I ...
3
votes
1answer
185 views

NHibernate one-to-one in a legacy database with a composite-key

We have a legacy Database that we want to read data from using NHibernate. The tables that we want to map are the following: Users PK - UserId PK - GroupId LocationSource etc... Locations PK - ...
0
votes
1answer
227 views

Rails 3: DataObjects::SQLError — How do I stop these from producing errors on *warnings*?

When I insert just a few fields to a table in a legacy database schema (via DataMapper), I'm getting the following: DataObjects::SQLError "Field 'activationcode' doesn't have a default value" I ...
7
votes
4answers
679 views

Hibernate chokes on missing rows when dealing with a legacy database

I am trying to implement hibernate on a legacy database (that still has a legacy PHP client), and am running into some problems because the people who wrote the original app had no idea what they were ...
0
votes
0answers
66 views

Qualified table names in Rails

I am connecting to a legacy database as a user who did not create most of the tables. I must therefore use qualified table names in my queries (for example select table.* from owner.table). I tried ...
0
votes
1answer
131 views

Django Zero Value on ForeignKey Field

I'm working on very badly designed legacy database. On some of the tables not only can the foreign keys be null (which is OK) they can be 0 too. I mapped one of these tables to a Model it returns the ...
1
vote
1answer
285 views

Entity Framework 4.0 Many-Many relationship Using Non-Primary Key

I am trying to build a generic repository using Entity Framework 4.0 using a legacy MS SQL database I have inherited. A pretty familiar scenario. I need to add category information to a fairly long ...
2
votes
2answers
383 views

Translating data mining sql-queries into Grails equivalents?

I would like to build a web interface to present logdata. This should be a nice opportunity to try to build a little web app using Grails, which I have been wanting to try out for quite a while, but I ...
2
votes
1answer
1k views

How can I use TPT inheritance models when primary keys have different names?

Using Entity Framework 4.1 against a legacy database, I'm unable to generate a working set of TPT inheritance models that aren't pluralized and use different names for a common primary key. I am ...
3
votes
1answer
292 views

Migrating several legacy databases into one Rails app

I have several (old) Drupal-sites that need to be replaced with one single new Rails app. That new site should hold all old Drupal-content. That old Drupal-content is partly broken (due to nearly 7 ...
2
votes
1answer
737 views

Dealing with legacy database views in rails

I am new to ruby and rails and I am having difficulty conceptualizing the MVC techniques in conjunction with database views. I am dealing with a legacy database that has several viiews that are used ...
0
votes
1answer
168 views

Fluent NHibernate with Legacy database compound question

I know these questions been asked numerous times, but some of the questions are 6+ months, and products evolve. I have a database schema, newly designed by some real pro's, beautiful in it's ...
1
vote
1answer
4k views

JPA OneToOne association where 2 entities use composite primary keys but use different column names?

We are trying to use Hibernate with a database that uses a lot of composite keys and it's been causing us a lot of headaches. Unfortunately, we can't change the schema so we have to do a lot of ...
0
votes
1answer
230 views

How to Map a database where Primary keys are made of 2 fields (one set on insert, one Identity)?

I am currently working on an old ASP application with a SQL Server 2000 database which we are trying to port to newer technologies using .NET and NHibernate. In that DB, all the tables have an ...
2
votes
2answers
646 views

Legacy database structure Hibernate mapping issue

I am having trouble mapping the following database structure (shortened for brevity with just PKs/FKs and a few extra columns: Policy Policy_Id (PK) ... Risk Risk_Id (PK) ... Party Party_Id (PK) ...
0
votes
2answers
69 views

Convert from .NET MVC 2 to Django

Our .NET MVC 2 app is over-engineered. That data models are solid, but everything else is a mess. Is there away to "point" Django at our MS SQL Database, and have it generate the basic scaffolding ...
1
vote
1answer
98 views

Legacy database - should I be using NHibernate?

I am stuck with a legacy database involving composite keys and there is no room to modify the db. The problem seems to be that one part of the key is also used for each foreign key. So if I have ...

1 2