mirror of
				https://github.com/psycopg/psycopg2.git
				synced 2025-11-04 09:47:30 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			156 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			156 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import gtk
 | 
						|
import psycopg2
 | 
						|
 | 
						|
o = psycopg2.connect("dbname=test")
 | 
						|
c = o.cursor()
 | 
						|
c.execute("SELECT 1.23::float AS foo")
 | 
						|
x = c.fetchone()[0]
 | 
						|
print x, type(x)
 | 
						|
 |