 | CGUIIiODBCFileConnect Method (IWin32Window, String, String, Int32, String) |
Get the connection string for a file database as well as optional table name and FileUsage attribute
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static int IiODBCFileConnect(
IWin32Window owner,
string file,
ref string connect,
int usage,
ref string table
)
public static int IiODBCFileConnect(
IWin32Window owner,
string file,
ref string connect,
int usage,
ref string table
)
Public Shared Function IiODBCFileConnect (
owner As IWin32Window,
file As String,
ByRef connect As String,
usage As Integer,
ByRef table As String
) As Integer
Public Shared Function IiODBCFileConnect (
owner As IWin32Window,
file As String,
ByRef connect As String,
usage As Integer,
ByRef table As String
) As Integer
public:
static int IiODBCFileConnect(
IWin32Window^ owner,
String^ file,
String^% connect,
int usage,
String^% table
)
public:
static int IiODBCFileConnect(
IWin32Window^ owner,
String^ file,
String^% connect,
int usage,
String^% table
)
static member IiODBCFileConnect :
owner : IWin32Window *
file : string *
connect : string byref *
usage : int *
table : string byref -> int
static member IiODBCFileConnect :
owner : IWin32Window *
file : string *
connect : string byref *
usage : int *
table : string byref -> int
Parameters
- owner
- Type: System.Windows.FormsIWin32Window
The IWin32Window the message box will display in front of. - file
- Type: SystemString
File Name - connect
- Type: SystemString
Connection string (returned) - usage
- Type: SystemInt32
File Usage (0 - ODBC drivers not queried, 1 - Directory containing tables, 2 - File containing tables) - table
- Type: SystemString
Table name of file (returned if plUsage==1)
Return Value
Type:
Int32
0 - OK
-1 - Cancel
terminates on error
Remarks
If the file extension is "mdb" or "xls" then a Microsoft Access
or Excel database is assumed. Otherwise, a dialog appears listing
the installed ODBC file database drivers. If the driver takes a
directory as a database (FileUsage==1) the table name is also
returned. This is needed because the table name may or may not include
the file extension.
See Also