Sha256: ce259445494b2155056637bf0427a2ee7ceabbbeddd2208392de4a8aa3719988

Contents?: true

Size: 833 Bytes

Versions: 7

Compression:

Stored size: 833 Bytes

Contents

#!/usr/bin/env ruby1.9.1

require 'pg'

connhash = { :dbname => 'test' }

db = PGconn.connect( connhash )
db.exec "DROP TABLE IF EXISTS test"
db.exec "CREATE TABLE test (a INTEGER, b BYTEA)"

a = 42
b = [1, 2, 3]
db.exec "INSERT INTO test(a, b) VALUES($1::int, $2::bytea)", \
[a, {:value => b.pack('N*'), :format => 1}]

db.exec "SELECT a::int, b::bytea FROM test LIMIT 1", [], 1 do |res|

	res.nfields.times do |i|
		puts "Field %d is: %s, a %s (%s) column from table %p" % [
			i,
			res.fname( i ),
			db.exec( "SELECT format_type($1,$2)", [res.ftype(i), res.fmod(1)] ).getvalue(0,0),
			res.fformat( i ).zero? ? "string" : "binary",
			res.ftable( i ),
		]
	end

	res.each do |row|
		puts "a = #{row['a'].inspect}"
		puts "a (unpacked) = #{row['a'].unpack('N*').inspect}"
		puts "b = #{row['b'].unpack('N*').inspect}"
	end
end


Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pg-0.12.2-x86-mingw32 sample/test_binary_values.rb
pg-0.12.2 sample/test_binary_values.rb
pg-0.12.1 sample/test_binary_values.rb
pg-0.12.0-x86-mingw32 sample/test_binary_values.rb
pg-0.12.0 sample/test_binary_values.rb
pg-0.12.0.pre263 sample/test_binary_values.rb
pg-0.12.0pre258 sample/test_binary_values.rb