- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to make an SQL table Invisible?
I have another "invisible" question. I made an SQL table (from Query Builder) and want to modify my JSL to make that table invisible. I've tried adding "Invisible" to many different places, but none have worked. Is there a different syntax for making a Query Builder table invisible? Here is my code - thanks in advance for the help!
dt1=New SQL Query(
Version( 130 ),
Connection( "JMP" ),
["JMP_Table" =>
"Tablelocation.jmp"
QueryName( "SQLQuery1" ),
Column(
"example",
"t1",
Alias( "exampleAlias" )
Column(
"example2",
"t1",
Alias( "exampleAlias2" )
Column(
"example3",
"t1",
Alias( "exampleAlias3" )
From( Table( "JMP_Table", Alias( "t1" ) ) )
) << Run;
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to make an SQL table Invisible?
Strange that the invisible keyword is not available here. Try using << show window(0); that will make your table invisible. Here's a simple example:
dt = open("$sample_data\Big Class.jmp");
dt <<Show Window(0);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to make an SQL table Invisible?
Strange that the invisible keyword is not available here. Try using << show window(0); that will make your table invisible. Here's a simple example:
dt = open("$sample_data\Big Class.jmp");
dt <<Show Window(0);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to make an SQL table Invisible?
That did it - Thanks so much for the quick help!