tutorial firebird embedded python

Solutions on MaxInterview for tutorial firebird embedded python by the best coders in the world

showing results for - "tutorial firebird embedded python"
Cecelia
30 Jan 2018
1from firebird.driver import connect
2
3# Attach to 'employee' database/alias using embedded server connection
4con = connect('employee', user='sysdba', password='masterkey')
5
6# Attach to 'employee' database/alias using local server connection
7from firebird.driver import driver_config
8driver_config.server_defaults.host.value = 'localhost'
9con = connect('employee', user='sysdba', password='masterkey')
10
11# Set 'user' and 'password' via configuration
12driver_config.server_defaults.user.value = 'SYSDBA'
13driver_config.server_defaults.password.value = 'masterkey'
14con = connect('employee')
15
similar questions
queries leading to this page
tutorial firebird embedded python