Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
534cd75
Have strings imported as UTF-8
May 22, 2012
8b7acc1
Apply distinct when distinct is set and no limit or offset is set.
May 30, 2012
25b775e
Don't add views to the schema.rb file.
Jul 17, 2012
efb8b65
lje - changes to handle the Sybase XML and uniqueindentifier datatype…
Jul 17, 2012
0a16224
Refactor the list of tables.
Jul 17, 2012
b866e50
Merge branch 'rails31' of https://github.com/in4systems/activerecord-…
Jul 17, 2012
e17c5af
Make select a public method
Jul 30, 2012
a8e5dae
Remove the whitespace from the ends of all strings.
Sep 11, 2012
6cf5b39
Translate Arel::Nodes::True to 1=1
Sep 13, 2012
4c66cd8
Override Arel's node matches code, so that I can do integer column li…
Oct 2, 2012
9ba2c7a
Take text encoding from the database connection configuration
Oct 4, 2012
f397cae
Fix the UTF-8 argument error problem on windows.
Oct 12, 2012
29647d6
Check that the table belongs to dba.
Nov 5, 2012
322301b
Remove aliases from group by clauses.
Nov 8, 2012
d7568a7
Fixed issue with group by made by previous commit.
Nov 8, 2012
7c6d9d8
Switch to using the new ffi backed sqlanywhere gem
Jan 17, 2013
f1c954c
Update the adapter to use the new symbols
Jan 17, 2013
5e066d7
Delete gemspec and update gemfile
Jan 17, 2013
d20cdd2
Readd Gemspec
Jan 17, 2013
7a59e00
Make a distinct gem
Jan 21, 2013
3acd4ae
Remove the gemfile
Jan 21, 2013
be0a493
Bumped version
Jan 21, 2013
c720810
Restore the original gem name
Jan 30, 2013
be3e224
Fix version of sqlanywhere gem
Jan 30, 2013
ece264a
Revert "Update the adapter to use the new symbols"
Jan 30, 2013
a69632d
Start our JDBC adapter
Feb 6, 2013
ad260c8
rename files and delete methods that I don't expect to be used.
Feb 6, 2013
69c7971
Use the jdbc connection as the base connection
Feb 6, 2013
0ac78c5
Add last_inserted_id method
Feb 6, 2013
ddc5cf3
wrap exec_query so we can modify the binds
Feb 6, 2013
dafde33
Teach the adapter the select_rows method
Feb 7, 2013
251f511
Delegate the execute method to the connection
Feb 7, 2013
2925d1f
Support loading the jar file even when sqlany environmental variable …
Feb 7, 2013
ab663fe
neaten and rewrite the code that sets the classpath
Feb 7, 2013
cf23497
Hopefully have it find the jar file in a generic manner
Feb 12, 2013
b8e07a2
Remove broken version check in indexes method.
Mar 8, 2013
51d5555
bump version
Mar 8, 2013
2a423aa
Clear whitespace on the ends of lines in the adapter code
Jun 17, 2013
bcd0c20
Remove whitespace on the ends of the lines in the arel code
Jun 17, 2013
b4e4dbf
When quoting a table_name stick dba in front if owner isn't given
Jun 17, 2013
846b445
bump to version 1.0.7
Jun 17, 2013
b78ed88
Use the quote table alias name method for visit_Arel_Nodes_TableAlias
Jun 17, 2013
c6f3569
Bump the version to 1.0.8
Jun 17, 2013
7779ddf
Computed values no longer show up as the column default
Sep 26, 2013
9ca0047
Add methods to get and set the current database user
Oct 31, 2013
49bf207
added and order by to the column select
Dec 3, 2013
7cb9ec0
Be more meaningful in how we filter by dba
May 27, 2014
b276d04
Add 16 sqlanywhere
Feb 13, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 0 additions & 122 deletions Rakefile

This file was deleted.

42 changes: 0 additions & 42 deletions activerecord-sqlanywhere-adapter.gemspec

This file was deleted.

Binary file not shown.
27 changes: 27 additions & 0 deletions activerecord-sqlanywhere-jdbc-in4systems-adapter.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Gem::Specification.new do |s|
s.name = %q{activerecord-sqlanywhere-jdbc-in4systems-adapter}
s.version = "1.0.13"

s.authors = ['Eric Farar', 'Sri Kalai']
s.description = %q{ActiveRecord JDBC driver for SQL Anywhere customized for in4systems}
s.email = %q{[email protected]}
s.files = [
"CHANGELOG",
"LICENSE",
"README",
"test/connection.rb",
"lib/active_record/connection_adapters/sqlanywhere_jdbc_in4systems_adapter.rb",
"lib/arel/visitors/sqlanywhere.rb",
]
s.executables = []
s.test_files = []
s.has_rdoc = false
s.homepage = 'https://github.com/in4systems/activerecord-sqlanywhere-adapter'
s.licenses = [%q{Apache License Version 2.0}]
s.require_paths = [%q{lib}]
s.summary = %q{ActiveRecord driver for SQL Anywhere}
s.platform = 'java'
s.add_dependency 'activerecord-jdbc-adapter'
s.add_dependency 'activerecord', '>= 3.0.3'
end

48 changes: 0 additions & 48 deletions lib/active_record/connection_adapters/sqlanywhere.rake

This file was deleted.

Loading