| 132 | |
| 133 | ---- |
| 134 | |
| 135 | == Retrieving Results == |
| 136 | |
| 137 | Data is collected during experimentation and pushed to a server using an experiment ID indicated during the initiation and conclusion of each experiment. This ID is important, as it is used to recover experiment results and even view them in real-time. (Server names vary with test beds. This server name is specific to ORBIT.) |
| 138 | |
| 139 | To recover experiment data to the local machine, and using the experiment ID: |
| 140 | |
| 141 | {{{ |
| 142 | wget "http://oml:5053/result/dumpDatabase?expID=<your_experiment_ID>" -O myDatabase |
| 143 | }}} |
| 144 | |
| 145 | * If the experiment ID contains non-alphanumeric ASCII characters, it is necessary to escape each of them using "%" followed by the ASCII code. |
| 146 | |
| 147 | You're almost done. In order to get SQLite to recognize the database, it first must be told that the information '''is''' a database. |
| 148 | |
| 149 | {{{ |
| 150 | sqlite3 -init myDatabase myDatabase.sq3 |
| 151 | }}} |