740cff77aa
[GB.DB] * NEW: 'Collection.Options' is a new property that allows to define the specific options of a connection.
15 lines
234 B
Text
15 lines
234 B
Text
' Gambas module file
|
|
|
|
Public Sub Main()
|
|
|
|
Dim hConn As New Connection
|
|
|
|
hConn.Type = "postgresql"
|
|
hConn.Options["dbname"] = "omogen_benoit_kubuntu_sanef_fox2"
|
|
hConn.Open
|
|
|
|
Print hConn.Tables.Count
|
|
|
|
hConn.Close
|
|
|
|
End
|