Editing Easy DB Help File

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 8: Line 8:
 
* Saves data to a sql lite database that you can use any way you wish.
 
* Saves data to a sql lite database that you can use any way you wish.
 
* Highly configurable.
 
* Highly configurable.
* Some of the terminology used here is covered in '''[[Basic Database Terminology]]'''
 
  
 
= Download and Install =  
 
= Download and Install =  
Line 171: Line 170:
  
 
= In Depth =
 
= In Depth =
This revisits some material already covered but in more depth.  Perhaps in a, or many, separate pages but  here for now.
+
Perhaps in a or many separate pages but  here for now.
  
== Table Creation ==
+
== Output ==  
 
 
=== Table and Column Name Rules ===
 
 
 
Much the same rules apply to both table and column names:
 
 
 
* Use lower case.
 
* No spaces in names, do not start with a number, generally avoid non alphebetic characterss ( except _ )
 
 
* Names do not contain spaces tabs or weird characters
 
 
* the "_" character may be used in place of a space to make a name that would otherwise be two_words.
 
* Certain words are used by the sql language and are reserved for that, you cannot use them for table or column
 
names, some will be caught by the system ( more will be added as we trip across them ).  They include: like, where, select delete.....
 
 
 
==== if you do not follow the guidelines then ====
 
           
 
* the system may change your name to meet the guidelines ( excess spaces removed, spaces changed to underscore, case shifted to lower case.... ,
 
* you may get a helpful error message
 
*you may get odd unexpected results perhaps with an unhelpful error message or none at all.
 
 
 
    it takes a common form for lines in the systems files. These are of the
 
 
 
 
 
 
 
 
 
 
 
== Output/Reporting ==  
 
 
Generally there are three aspects to output:
 
Generally there are three aspects to output:
  
Line 210: Line 182:
 
These are covered below.
 
These are covered below.
  
=== Table and Columns ===
+
==== Table and Columns ====
  
=== Selection Criteria ===
+
==== Selection Criteria ====
  
=== Sort Order ===
+
==== Sort Order ====
  
  
Line 221: Line 193:
  
  
=== Output Formats ===
+
==== Output Formats ====
 
When running a query ( you could call it a report ) there are a variety of formats to choose between ( not including which columns.... which is part of Output Content ).  When you run a query the system tries to open the resulting file ( output is always to file, if you need printed output print the file ) in the approiapate viewer, often your text editor.
 
When running a query ( you could call it a report ) there are a variety of formats to choose between ( not including which columns.... which is part of Output Content ).  When you run a query the system tries to open the resulting file ( output is always to file, if you need printed output print the file ) in the approiapate viewer, often your text editor.
  
Line 306: Line 278:
 
</pre>
 
</pre>
  
==== CSV ====
+
=== CSV ===
 
<pre>
 
<pre>
 
ROWID breed dog_name typical_weight
 
ROWID breed dog_name typical_weight
Line 316: Line 288:
 
</pre>
 
</pre>
  
==== SQL ====
+
=== SQL ===
  
==== HTML ====
+
=== HTML ===
  
 
An HTML version of a table, much nicer to view than the ASCII version.
 
An HTML version of a table, much nicer to view than the ASCII version.

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)