similar to: Informix adapter testing

Displaying 20 results from an estimated 400 matches similar to: "Informix adapter testing"

2006 Mar 27
0
Informix adapter for Ruby on Rails
We can now use Informix as back-end for our Rails applications. Here''s the code of the adapter: http://rubyforge.org/cgi-bin/viewcvs.cgi/rails-informix/?root=rails-informix It has been tested succesfully on Solaris 9/Informix 9.40/Rails 1.0.0. Since Informix doesn''t allow quoting a value for a [CB]LOB in a query, I had to override some methods of ActiveRecord::Base to accept a
2006 Oct 16
6
Rails AR/Oracle Unit Test: [5310] failed (but getting better)
"rick" has given AR/Oracle some love, but it''s still unhappy... http://dev.rubyonrails.org/changeset/5310 ------------------------------------------------------------------------ r5310 | rick | 2006-10-16 08:42:55 -0700 (Mon, 16 Oct 2006) | 1 line Fix has_many :through to add the appropriate conditions when going through an association using STI. Closes #5783. [Jonathan Viney]
2005 Dec 15
2
Rails 1.0 & RJS Templates
Hello all, I just successfully updated my dev env to Rails 1.0. I then wanted to get .rjs templates working and followed Cody''s instructions at http://www.codyfauser.com/articles/2005/12/02/rails-rjs-templates-plugin . However, when I try to run ''rake test'' I get the following error: (in
2008 Jan 16
0
[CruiseControl] RubyOnRails build 8649 failed
The build failed. CHANGES ------- Revision 8649 committed by gbuesing on 2008-01-16 20:07:10 Introducing DateTime #utc, #utc? and #utc_offset, for duck-typing compatibility with Time. Closes #10002 M /trunk/activesupport/CHANGELOG M /trunk/activesupport/lib/active_support/core_ext/date_time/calculations.rb M /trunk/activesupport/test/core_ext/date_time_ext_test.rb TEST FAILURES AND
2004 Nov 18
2
Informix database
We use Informix database. I was able to connect to the database with S-PLUS by using its CONNECT/Java through the JDBC driver. How can I connect to Informix with R, wither using JDBC or any other method? we run Linux so I prefer a method other than ODBC. Thankx for the help
2006 Mar 09
1
I wanna use INFORMIX DB in Ruby on Rails
I have the INFORMIX ODBC Driver(INFORMIX connected by RUBY-ODBC) on Windows but I don''t have one for on RAILS. That''s my big problem at this moment!!! I''m trying to find a solution to connnect INFORMIX DB using Rails very badly! Could you help me fix my trouble? I need your tips!!!! help me ;-( -- Posted via http://www.ruby-forum.com/.
2012 Jan 19
1
R connect to Informix Database
Hi, I am new to R and wondering if it is possible for it to connect to an Informix database. I tried google but nothing came back that I could figure out. Can somebody tell me if its possible (which I believe it is) and how to connect to an Informix database using R. Thanks! -- View this message in context: http://r.789695.n4.nabble.com/R-connect-to-Informix-Database-tp4310594p4310594.html
2007 Oct 21
0
Rails/Informix 1.0.0 released
This is the last release for Ruby on Rails 1.x. The next one will be released as a rubygem named activerecord-informix-adapter alongside Ruby on Rails 2.0 when it reaches final. Thanks to Jeremy Kemper for including it in the Ruby on Rails repository. Web site: http://rails-informix.rubyforge.org Rails/Informix is the Informix adapter for ActiveRecord that provides O/RM to Ruby on Rails. --
2007 Oct 14
5
Ruby/Informix 0.6.1 released
This is a maintenance release to fix a bug triggered while working with Ruby on Rails and Informix. Web site: http://ruby-informix.rubyforge.org Changelog: 0.6.1 13/10/2007 ------------------ Bugs fixed: * Database#columns was returning an empty array from within the Informix ActiveRecord adapter (ActiveRecord::ConnectionAdapters::InformixAdapter#columns) if
2007 Jun 12
1
php + Informix IDS via IFX Module Howto for Centos5
Dear all I've come out with a howto that I wish to contribute back to the community. This howto is actually a sort of a draft that I made for my own "self-reminder". It was an interesting experience collating the data to eventually come out with the stuffs. I hope it is useful enough to someone not to go through the same "hell/happy hunting grounds" The said howto is
2013 Apr 16
7
puppet-cleaner: makes puppet DSL code comply with a subset of the style guide
FWIW, I''ve wrote puppet-cleaner to help me make comply thousands of lines of puppet 2.6 DSL code to puppet 2.7 style guide and expectations. I''m uploading it to github today for anyone to use. https://github.com/santana/puppet-cleaner Externally, you run puppet-clean file.pp and it can transform this: /* multiline comment trailing white space here -> */ class
2007 Dec 10
0
Informix adapter gem missing
I can''t find activerecord-informix-adapter in gems.rubyonrails.org. Is there any chance it can be uploaded? Thanks in advance. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
2010 Jan 27
0
Updating the Informix adapter for ActiveRecord
What is the repository for the ActiveRecord adapters? I''ll need to update the Informix adapter. Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to
2010 Jan 21
0
New version 2.0.0 of IBM_DB- The Rails Adapter/Ruby driver for DB2 and Informix now available
Hi All, New version 2.0.0 of the IBM_DB gem is been released. This release of the gem adds support for ActiveRecord to use parameterized SQL Queries with DB2. With this support you can now reap more performance benefits for your Rails applications. Enabling this feature is as simple as just adding the parameter “parameter” in your database.yml and setting it to true. Refer to Parameterized
2006 Jun 11
2
Problem with Acts_As_Attachment
Hi, I have installed the acts_as_authenticated plugin from technoweenie, but when I run the tests I get an error (running windoze) -- create_table(:attachments, {:force=>true}) c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:21:in `require__'': no such file to load -- sqlite (MissingSourceFile) I found the require statement in test/abstract_unit.rb
2006 Mar 27
5
Fake ActiveRecord model?
Hi all, I have a legacy table which I cannot get to work with ActiveRecord (no ids etc). All I want is to create a class which opens a connection manually and allows me to execute some plain SQL statements. What I can''t figure out is how to either build up a connection and execute queries from a non-AR inherited class, or how to create a AR-inherited class minus all the AR magic and
2005 Mar 10
1
Running unit tests on SQL Server
Hi everyone, It''s been more than a month since I last fired up Ruby or ActiveRecord, so imagine my surprise when, after getting the latest source and running the unit tests for MySql, I was greeted with a screen full of errors. I''ll come back to the MySql errors later. What follows is the output I get when I run the tests for SQL server. I installed ruby with the one-click
2007 May 31
0
Rails AR/SQLServer Unit Test: [6912] failed (but getting better)
"bitsweat" has given AR/SQLServer some love, but it''s still unhappy... http://dev.rubyonrails.org/changeset/6912 ------------------------------------------------------------------------ r6912 | bitsweat | 2007-05-31 10:15:56 -0700 (Thu, 31 May 2007) | 1 line Fix an edge case with find with a list of ids, limit, and offset. Closes #8437.
2004 Jun 07
2
Problem with rxFax
I compiled libtiff version 3.6.1 and spandsp and spandsp version k. When trying to load asterisk I get the folloein error: Jun 7 10:15:03 WARNING[16384]: loader.c:408 load_modules: Loading module app_dtmftotext.so failed! Ouch ... error while writing audio data: : Broken pipe [root@zapata root]# Warning, flexible rate not heavily tested! Please help! -- Manuel Marin Garcia TRANSTELCO S.A.
2004 Jun 23
1
cdr_mysql compilation error
I am trying to compile current cvs asterisk-addons for mysql cdr but I get the following error. Iam running mysql 4.0.20 and cvs v1 stable version of asterisk. cc -fPIC -I../asterisk -D_GNU_SOURCE -I/usr/local/mysql/include -c -o cdr_addon_mysql.o cdr_addon_mysql.c cdr_addon_mysql.c:50: warning: parameter names (without types) in function declaration cdr_addon_mysql.c:50: warning: data