 | CGUIiImportDatabaseSQL Method (IWin32Window, String, String, String, String) |
Create template to import an external database table,
created using SQL.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static int iImportDatabaseSQL(
IWin32Window owner,
string name,
string sql,
string temp,
ref string line
)
public static int iImportDatabaseSQL(
IWin32Window owner,
string name,
string sql,
string temp,
ref string line
)
Public Shared Function iImportDatabaseSQL (
owner As IWin32Window,
name As String,
sql As String,
temp As String,
ByRef line As String
) As Integer
Public Shared Function iImportDatabaseSQL (
owner As IWin32Window,
name As String,
sql As String,
temp As String,
ByRef line As String
) As Integer
public:
static int iImportDatabaseSQL(
IWin32Window^ owner,
String^ name,
String^ sql,
String^ temp,
String^% line
)
public:
static int iImportDatabaseSQL(
IWin32Window^ owner,
String^ name,
String^ sql,
String^ temp,
String^% line
)
static member iImportDatabaseSQL :
owner : IWin32Window *
name : string *
sql : string *
temp : string *
line : string byref -> int
static member iImportDatabaseSQL :
owner : IWin32Window *
name : string *
sql : string *
temp : string *
line : string byref -> int
Parameters
- owner
- Type: System.Windows.FormsIWin32Window
The IWin32Window the message box will display in front of. - name
- Type: SystemString
External database file name - sql
- Type: SystemString
Text file with SQL queries to use, ("" - get from database) - temp
- Type: SystemString
Import template to make - line
- Type: SystemString
Name of table imported (returned)
Return Value
Type:
Int32
0 - OK
-1 - Cancel
Remarks
1. This is used to build an Oasis montaj group (line) from
one or more database tables and fields, by selecting from
one or more SQL selection queries. The list of queries
is read from a text file with the following syntax:
Query_Name_1
Query...
Query... (continued)
...
...
END_QUERY
Query_Name_2
etc.
2. Each query has a title line, the query itself, then the
"END_QUERY" line to finish. The title of a subsequent query
is on the line after an "END_QUERY" line.
3. If the text file parameter is left blank (""), then
selection queries in the database itself are listed.
In addition to the pre-defined queries, there is a
"User Defined" query which may be filled in by the user.
4. This function DOES NOT import the table itself, but
creates an import template which may be used to import
the data (see ImportDAO_DU).
5. If connection string is of type "FILENAME=..." the connection will attempt to resolve
it as a file database. (see also ODBCFileConnect_GUI)
See Also