Changeset 6458
- Timestamp:
- Feb 21, 2006, 2:26:03 PM (20 years ago)
- Location:
- trunk/glueforge
- Files:
-
- 3 edited
-
examples/complex.md (modified) (2 diffs)
-
examples/simple.md (modified) (1 diff)
-
glueforge.in (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/glueforge/examples/complex.md
r5963 r6458 1 1 glueforge METADATA 2 pkg_name STR foodb 2 pkg_name STR foodb 3 3 pkg_namespace STR foo 4 4 END 5 5 6 6 foo METADATA 7 foo STR 60 # Primary Key 8 bar S32 0 7 foo STR 60 # Primary Key # the name of foo thing 8 bar S32 0 ## count of bar 9 9 baz F32 0.0 10 10 boing F64 0.0 … … 16 16 boing F64 0.0 17 17 baz F32 0.0 18 bar S32 0 19 foo STR 60 # Primary Key 18 bar S32 0 ## count of bar 19 foo STR 60 # Primary Key # the name of foo thing 20 20 END -
trunk/glueforge/examples/simple.md
r5963 r6458 1 1 table STR foo 2 foo STR 60 # Primary Key 3 bar S32 0 2 foo STR 60 # Primary Key # the name of foo thing 3 bar S32 0 ## count of bar 4 4 baz F32 0.0 5 5 boing F64 0.0 -
trunk/glueforge/glueforge.in
r6447 r6458 3 3 # Copyright (C) 2005-2006 Joshua Hoblitt 4 4 # 5 # $Id: glueforge.in,v 1.4 6 2006-02-17 03:39:28jhoblitt Exp $5 # $Id: glueforge.in,v 1.47 2006-02-22 00:26:03 jhoblitt Exp $ 6 6 7 7 use strict; … … 344 344 345 345 table STR foo 346 foo STR 60 # Primary Key 347 bar S32 0 346 foo STR 60 # Primary Key # the name of foo thing 347 bar S32 0 ## count of bar 348 348 baz F32 0.0 349 349 boing F64 0.0 … … 360 360 C<F32>, C<F64>, & C<BOOL> columns are ignored. 361 361 362 Keys maybe specified as a C<Primary Key> or C<Key>. Only one C<Primary Key> 363 may be specified per table. 362 Indexes maybe specified as comment value of either C<Primary Key> or C<Key>. 363 Only one C<Primary Key> may be specified per table. 364 365 Description comments may specified as either a C<# ...> after an index 366 specifier or as stand alone comment value of C<## ...>. 364 367 365 368 The key name C<position> is also reserved as it is used internally by the … … 387 390 388 391 foo METADATA 389 foo STR 60 # Primary Key 390 bar S32 0 392 foo STR 60 # Primary Key # the name of foo thing 393 bar S32 0 ## count of bar 391 394 baz F32 0.0 392 395 boing F64 0.0 … … 398 401 boing F64 0.0 399 402 baz F32 0.0 400 bar S32 0 401 foo STR 60 # Primary Key 403 bar S32 0 ## count of bar 404 foo STR 60 # Primary Key # the name of foo thing 402 405 END 403 406
Note:
See TracChangeset
for help on using the changeset viewer.
