Displaying 6 results from an estimated 6 matches for "column_defaults".
Did you mean:
  column_default
  
2006 Jan 19
3
problems with migrations in sql server
Is anyone using migrations with a SQL Server database who might be able to
lend me a hand?   I''ve used migrations with MySql in the past and haven''t
run into any issues so forgive  When I run rake migrate nothing is actually
getting updated in my database.  I created a migration using
./script/generate migration AddFooTable and updated the migration to look as
follows:
class
2005 Nov 24
1
Log question
development.log  contains quite a few SELECTS on system tables like 
COLUMNS. Wouldn''t it be more efficient to cache this info?
I''m also wondering about strings like "[4;35;1m". What''s their purpose 
and is it possible to get rid of them? They look like screen coordinates 
and makes no sense in a text file.
Christer
Processing ReportController#create (for
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
2006 Aug 15
1
rails and MSSQL transactions
Hello,
I have rails using a MSSQL db. The set up works fine with low volume, 
but with 2+ requests/second I keep on getting the following error:
DBI::DatabaseError: Execute
    OLE error code:80004005 in Microsoft OLE DB Provider for SQL Server
      Cannot create new connection because in manual or distributed 
transaction mode.
    HRESULT error code:0x80020009
      Exception occurred.: SELECT
2008 Mar 14
15
Is anyone running Rails 2.x against a MS SQL Server DB?
I am unable to get ActiveRecord session support to work under 2.x
against a SQL Server database.  I''m starting to wonder if anyone is
running 2.x against SQL Server?
Is anyone running under the following configuration:
Rails 2.x
SQL Server 2000 DB (using AR adapter in ODBC mode)
AR store for ActionController session store.
I''d like to chat with you if you are.
Thanks,
Wes
-- 
2005 Mar 03
12
bug in postgresql ''now'' time handling??
...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 default_value sees ''now'' it will call Time::now.to_s - a...