Category:Wren-table: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page for 'Wren-table' module.)
 
m (Now using internal links to related pages.)
 
Line 2: Line 2:
'''Wren-table''' is a module which enables simple single table databases to be created, accessed and manipulated by the Wren programmer. It consists of three classes: FieldInfo, Table and Records.
'''Wren-table''' is a module which enables simple single table databases to be created, accessed and manipulated by the Wren programmer. It consists of three classes: FieldInfo, Table and Records.


It is the fortieth in a series of modules (listed on the language's [https://rosettacode.org/wiki/Category:Wren main page]) designed to assist with writing Rosetta Code tasks so the same code does not have to be written or copy/pasted time and time again thereby bloating a task's script code unnecessarily.
It is the fortieth in a series of modules (listed on the language's [[:Category:Wren|main page]]) designed to assist with writing Rosetta Code tasks so the same code does not have to be written or copy/pasted time and time again thereby bloating a task's script code unnecessarily.


To use it you need to copy the Wren source code (in the [https://rosettacode.org/wiki/Category_talk:Wren-table talk page]) to a text file called ''table.wren'' and place this in the same directory as the importing script so the command line interpreter can find it.
To use it you need to copy the Wren source code (in the [[:Category_talk:Wren-table|talk page]]) to a text file called ''table.wren'' and place this in the same directory as the importing script so the command line interpreter can find it.


Wren-table has dependencies on the IO and OS modules which are part of Wren-cli's standard library. As such it can only be used in a Wren-cli script. However, if you need to use the File or Platform classes in your application, these can be imported indirectly via Wren-table.
Wren-table has dependencies on the IO and OS modules which are part of Wren-cli's standard library. As such it can only be used in a Wren-cli script. However, if you need to use the File or Platform classes in your application, these can be imported indirectly via Wren-table.

Latest revision as of 16:06, 9 May 2023

Library
This is an example of a library. You may see a list of other libraries used on Rosetta Code at Category:Solutions by Library.

Wren-table is a module which enables simple single table databases to be created, accessed and manipulated by the Wren programmer. It consists of three classes: FieldInfo, Table and Records.

It is the fortieth in a series of modules (listed on the language's main page) designed to assist with writing Rosetta Code tasks so the same code does not have to be written or copy/pasted time and time again thereby bloating a task's script code unnecessarily.

To use it you need to copy the Wren source code (in the talk page) to a text file called table.wren and place this in the same directory as the importing script so the command line interpreter can find it.

Wren-table has dependencies on the IO and OS modules which are part of Wren-cli's standard library. As such it can only be used in a Wren-cli script. However, if you need to use the File or Platform classes in your application, these can be imported indirectly via Wren-table.

Pages in category "Wren-table"

The following 3 pages are in this category, out of 3 total.