search for: activerdf

Displaying 7 results from an estimated 7 matches for "activerdf".

Did you mean: activer
2006 Aug 06
2
ActiveRDF and Rails
Hi, I tried out the ActiveRDF library for accessing RDF data from Ruby and it worked very well. Now I''m interested to combine ActiveRDF and Rails by using e.g. the YARS data-store instead of ActiceRecord in a RoR project. For this I downloaded the ''browserdf'' example. Now I need some help or ins...
2006 Apr 22
3
question about Rails with non-relational databases
I''m very uncomfortable with Rails right now because it seems to be totally wedded to relational databases. I want to develop my data and data structures in Tinderbox - a hypertext data development system from Eastgate systems (http://www.eastgate.com/Tinderbox/), export the data and datastructures, massage to some format, and then use with a dynamic frontend that builds a web page
2006 Jul 17
2
DB Admin Console
Over the past few months, I''ve developed an administrative console for databases in the process of solving other problems. At the moment, the state of development is: * Going to /admin_panel/model will bring you to a list of items in the model: * Supports acts_as_list via drag/drop sorting * Supports "activated" via an activated/deactivated button * Supports basic
2006 Jul 02
7
Generic SingleTable inheritance
Hi all, I would like to discuss a design idea I have in mind with you, in order to get critical feedback. ActiveRecord supports single table inheritance(STI) "per se", BUT you must add all possible instance variables(properties) of all subclasses to the "base table"(as columns). I would like to circumvent this restriction. Say we have a class AbstractGenericThing <
2006 Aug 13
2
Arbitrary "Columns" for ActiveRecord
I''m having a bit of a tough time coming up with a good solution for what I''m trying to do. I''ve come up with a couple of solutions that work pretty well but many use way too many queries or are just not very good. Basically I want to store something of a property list for a model. class Model < AR has_many :properties, :dependent => :delete end class
2006 Jul 02
10
Use Rails or PHP?
I''m new to RoR and have used PHP. I want to develop a personal organizer that allows me to add lists (tables) and search them. The ActiveRecord concept seems to allow me to set up something that works with an existing table, but I want the ability to add tables without programming. I know how to do this in PHP and I can put the SQL into queries in RoR, but does ActiveRecord let
2006 Jul 08
9
How to handle dynamically columned tables in rails
I want to build an application that lets me (the end user accessing a web page) design a simple list with columns and add records. E.g., if the end user says I want a table that has a list of songs, he can create a list (title, date, artist, label) and then make another list of, e.g., books on his bookshelf with the necessary columns (title, author, pub_date, shelf). The end user