CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 06 Aug 2025 09:10:22 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100128053317
location: https://web.archive.org/web/20100128053317/https://github.com/rails/sqlite2_adapter
server-timing: captures_list;dur=0.964331, exclusion.robots;dur=0.036336, exclusion.robots.policy;dur=0.022371, esindex;dur=0.017957, cdx.remote;dur=60.354683, LoadShardBlock;dur=317.043190, PetaboxLoader3.datanode;dur=48.806826, PetaboxLoader3.resolve;dur=160.095575
x-app-server: wwwb-app201
x-ts: 302
x-tr: 456
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app201; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 06 Aug 2025 09:10:23 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 28 Jan 2010 05:33:17 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "576adfbb808f8eb9080f02f6a987538f"
x-archive-orig-x-runtime: 648ms
x-archive-orig-content-length: 19690
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 28 Jan 2010 05:33:17 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 18 Sep 2009 22:35:45 GMT", ; rel="prev memento"; datetime="Fri, 18 Sep 2009 22:35:45 GMT", ; rel="memento"; datetime="Thu, 28 Jan 2010 05:33:17 GMT", ; rel="next memento"; datetime="Mon, 15 Feb 2010 05:20:41 GMT", ; rel="last memento"; datetime="Tue, 03 Nov 2020 03:44:51 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_14_20100128024205_crawl100-c/52_14_20100128053117_crawl101.arc.gz
server-timing: captures_list;dur=1.848030, exclusion.robots;dur=0.040886, exclusion.robots.policy;dur=0.024949, esindex;dur=0.017202, cdx.remote;dur=16.325149, LoadShardBlock;dur=412.064686, PetaboxLoader3.datanode;dur=201.367352, PetaboxLoader3.resolve;dur=364.007416, load_resource;dur=193.722589
x-app-server: wwwb-app201
x-ts: 200
x-tr: 680
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
rails's sqlite2_adapter at master - GitHub
This service is courtesy of Pledgie.
rails / sqlite2_adapter
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
SQLite 2 adapter for Rails 3 — Read more
name | age | message | |
---|---|---|---|
![]() |
MIT-LICENSE | Mon Aug 17 06:52:06 -0700 2009 | Initial extraction from ActiveRecord [lifo] |
![]() |
README | Mon Aug 17 06:52:06 -0700 2009 | Initial extraction from ActiveRecord [lifo] |
![]() |
lib/ | Mon Aug 17 06:52:06 -0700 2009 | Initial extraction from ActiveRecord [lifo] |
README
Rails 3 removes the deprecated SQLite 2 adapter. We strongly recommend that you upgrade to SQLite 3 or higher. However, if that's not possible due to the unexplainable reasons, then this plugin should do the job. Install ======= * Install the plugin : $ script/plugin install git://github.com/rails/sqlite2_adapter.git * Load the database adapter from your environment.rb Rails::Initializer.run do |config| ..... Rails::Initializer.default.add :initialize_sqlite2, :before => :initialize_database do require 'active_record/connection_adapters/sqlite2_adapter' end end That's it.