- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Saving an Empty Table with JSL
I'm opening several tables from a database, and then saving those into CSV files. The script works fine as long as the table has data, but empty tables (which I also want to save to show that they're empty) give me this error:
Data table is empty.
The file could not be saved.
Unable to save file.{2}
I can manually save the tables in JMP format, but not as a text export. Any ideas?
Data table is empty.
The file could not be saved.
Unable to save file.{2}
I can manually save the tables in JMP format, but not as a text export. Any ideas?
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Saving an Empty Table with JSL
Created:
Jan 3, 2020 01:46 PM
| Last Modified: Jan 3, 2020 11:01 AM
(3118 views)
| Posted in reply to message from afterword 04-25-2011
If you use the 'Is Empty()' function you can use an if statement to only save the data when the table is not empty:
Example:
dt = Open( "Path\DataTable" );
If( Is Empty( dt ),
// Then Do this if the table is not empty:
dt << Save( "Path\DataTable" )
,
// Else Do nothing
Print( "the table is empty and will not be saved" )
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Saving an Empty Table with JSL
I recently stumbled into this error message and was quite surprised.
Then I realized I'd made a new table with only the default "Column 1" and no rows.
I would prefer the table be saved as an empty table, but in my case the solution was as simple as naming the only column when I created the table.
The original report was apparently doing something other than the NewTable() function, so naming the column might have been harder.
sentinelDt = New Table( "sentinel", "private", New Column( "a") ); // needs a col name to save it with no rows!
sentinelDt << save( root || sentinelName );
Craige
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Saving an Empty Table with JSL
Created:
Jan 3, 2020 04:56 PM
| Last Modified: Jan 6, 2020 5:06 AM
(3104 views)
| Posted in reply to message from Craige_Hales 01-03-2020
After some further reading in the forum I realized that the Is Empty() function does not say whether the table has data in it... I saw a comment that it is better to use N Row (dt) to do this:
If( N Row( dt ) == 0,
// then
Print( "Data table is empty" );
// else
Print( "Data table is not empty" );
);