On 8/28/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I am attempting to use Elixir to read data from a legacy table which > has a composite index. > The legacy table does not have an 'id' field. > > I attempted to create a table with Elixir just as in the test files > and it worked fine - but it also > creates an id column. > > Am I missing something?
Why don't you autoload the whole table? And otherwise: using_options(auto_primarykey=False) should do the trick. See http://elixir.ematia.de/module-elixir.options.html for other options. -- Gaƫtan de Menten http://openhex.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SQLElixir" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlelixir?hl=en -~----------~----~----~----~------~----~------~--~---
