Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
SqueakDBX - Examples
Last updated at 10:06 pm UTC on 16 March 2009

| conn connectionSettings result |



    
connectionSettings := DBXConnectionSettings

        
host: 'localhost'

        
port: '5432'

        
database: 'sodbxtest'

        
userName: 'kk'

        
userPassword: 'kk'.

    

    
conn := DBXConnection

        
platform: DBXPostgresPlatform new

        
settings: connectionSettings.

    

    
conn connect.

    
conn open.

    
result := conn execute: 'select from materia'.

    
DBXTranscript show: result.