fluiddb 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/FluidDb.rb +2 -2
- metadata +2 -2
data/lib/FluidDb.rb
CHANGED
|
@@ -78,9 +78,9 @@ module FluidDb
|
|
|
78
78
|
v = "'" + self.escape_string( v ) + "'"
|
|
79
79
|
#v = "'" + v.sub( "'", "\'" ) + "'"
|
|
80
80
|
elsif v.is_a? DateTime then
|
|
81
|
-
v = "'" + v.strftime( "%Y-%m-%d %H:%M:%S" ) + "'"
|
|
81
|
+
v = "'" + v.strftime( "%Y-%m-%d %H:%M:%S.%6N %z" ) + "'"
|
|
82
82
|
elsif v.is_a? Time then
|
|
83
|
-
v = "'" + v.strftime( "%Y-%m-%d %H:%M:%S" ) + "'"
|
|
83
|
+
v = "'" + v.strftime( "%Y-%m-%d %H:%M:%S.%6N %z" ) + "'"
|
|
84
84
|
elsif v.kind_of? Date then
|
|
85
85
|
v = "'" + v.to_s + "'"
|
|
86
86
|
elsif v.is_a? Numeric then
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluiddb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-11-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: A semantic layer for db interaction
|
|
15
15
|
email: guy@guyirvine.com
|