search for: table_structur

Displaying 10 results from an estimated 10 matches for "table_structur".

Did you mean: table_structure
2005 Dec 17
1
lost in an ActiveRecord::StatementInvalid
I have an error I don''t know how to debug. I am adding the login suport in Depot (the example in the RoR book) and LoginController#add_user throws ActiveRecord::StatementInvalid in an innocent /login/add_user GET request. The trace goes down to a call to SQLiteAdapter#table_structure, and the source code suggests what''s happening is that "PRAGMA table_structure(#{table_name})" is returning empty metadata for some reason: def table_structure(table_name) returning structure = execute("PRAGMA table_info(# {table_name})") do...
2007 Mar 01
1
ActiveRecord::StatementInvalid error
When I try to run my webserver in the production environment I just get an application error message. This is all I can find in the log: ActiveRecord::StatementInvalid /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.1/lib/active_record/ connection_adapters/sqlite_adapter.rb:274:in `table_structure'' /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.0/lib/active_support/ core_ext/object/misc.rb:23:in `returning'' /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.1/lib/active_record/ connection_adapters/sqlite_adapter.rb:273:in `table_structure'' /usr/lib/ruby/gems/1.8/gems/ac...
2011 Dec 03
1
ActiveRecord Abstract class
...in rails console, I got the following error: from (irb):1irb(main):002:0> sb = Subclass.new ActiveRecord::StatementInvalid: Could not find table ''subclasses'' from /usr/lib/ruby/gems/1.8/gems/activerecord-3.1.3/lib/active_record/connection_adapters/sqlite_adapter.rb:439:in `table_structure'' from /usr/lib/ruby/gems/1.8/gems/activerecord-3.1.3/lib/active_record/connection_adapters/sqlite_adapter.rb:322:in `columns'' If I take out "self.abstract_class", everything works fine (subclass object is inserted into abstractclass table but abstractclass can be ins...
2007 Jun 21
3
Sqlite3, in-memory db and rspec_server
Hi everyone. I can''t get the above(subject line) combination to work. If I use a standard sqlite3 file db for the test db, and spec_server all the specs on my models pass. If I use an in-memory db for the test db, script/spec w/o spec_server, they all pass. But if I use in-memory and spec_server I get the following error: 1) ActiveRecord::StatementInvalid in ''User should be
2007 Jul 17
5
habtm confusion
...map {|c| [c.name, c.id]}, {:include_blank => true}, {:multiple => true}) %> </p> -- On the view I get the following error: ActiveRecord::StatementInvalid and the trace: /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/active_record/connection_adapters/sqlite_adapter.rb:360:in `table_structure'' /usr/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/core_ext/object/misc.rb:23:in `returning'' /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/active_record/connection_adapters/sqlite_adapter.rb:359:in `table_structure'' /usr/lib/ruby/gems/1.8/gems/acti...
2007 Mar 08
3
Problem loading data from database
Hello, I get this error trying to load some data from DB. I''m using Rails 1.2.2 on Fedora Core 6 and Sybase adapter. This worked fine when application run under Rails 1.1.6 but now I''m migrating to 1.2.2 and have some problems. At browser I got: SQL Command for table_structure for tplib_bckps failed Message: schema_info not found. Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output). And in the log file: Setting row count to (0) SQL Command failed! ** SybSQLContext Server Message: ** Message number 208 Sever...
2005 Apr 23
2
[Tip] Introspection to determine if a column may be null
I still want to get this into Rails for all connection adaptors, but for now I''ve hacked my own addition on for just PostgreSQL. The following code extends every Column object returned by MyModel.columns to support a new #required? method, which indicates if the column may or may not be null. The following is a huge hack - suggestions on a cleaner way to add this functionality
2007 Jun 16
1
BackgrounDRB and Sqlite3 / Autotest / Memory_test_fix Issues
...aring down and setting back up. Not sure where to start on this. Stack trace follows. Thanks! Regards Mikel ActiveRecord::StatementInvalid - (ActiveRecord::StatementInvalid) /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/ active_record/connection_adapters/sqlite_adapter.rb:360:in `table_structure'' /usr/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/ active_support/core_ext/object/misc.rb:23:in `returning'' /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.15.3/lib/ active_record/connection_adapters/sqlite_adapter.rb:359:in `table_structure'' /usr/local/lib/rub...
2008 Jul 01
14
rake aborted! Could not find table ...
...cute environment ** Execute db:migrate ** Invoke db:schema:dump (first_time) ** Invoke environment ** Execute db:schema:dump rake aborted! Could not find table ''stories'' /usr/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/ connection_adapters/sqlite3_adapter.rb:29:in `table_structure'' /usr/lib/ruby/gems/1.8/gems/activesupport-2.1.0/lib/active_support/ core_ext/object/misc.rb:28:in `returning'' /usr/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/ connection_adapters/sqlite3_adapter.rb:28:in `table_structure'' /usr/lib/ruby/gems/1.8/gems/act...
2005 Mar 03
12
bug in postgresql ''now'' time handling??
....read [ahoward@localhost ~]$ ruby a.rb ... ... ... ts ---------------------------- 2005-03-03 09:53:54.290717 2005-03-03 09:53:54.290717 2005-03-03 09:53:54.290717 2005-03-03 09:53:54.290717 (4 rows) it looks like (from only reading the code) that table_structure will map the default values of each field in column_defaults.collect do |row| field = row[0] type = type_as_string(row[3], row[2]) default = default_value(row[1]) length = row[2] [field, type, default, length] end so, each time defaul...