gambas-source-code/main/lib/db/gb.db/.src/Main.module
gambas 740cff77aa 'Collection.Options' is a new property that allows to define the specific options of a connection.
[GB.DB]
* NEW: 'Collection.Options' is a new property that allows to define the specific options of a connection.
2022-04-09 13:30:01 +02:00

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