I have a constantly updated SQLite3 db that records game data. One table for game information, another for events in a game, and the third for player information, including who won/lost:
http://schema.ccgames.db.94y.info/ (schema)
http://ccgames.db.94y.info/ (arbitrary readonly queries)
I want to create a Drupal site with three content-types (one for each table) and a node for each record in each table.
I know about "Import Node", but that's a one-time thing. How can I keep my Drupal nodes constantly in sync w/ my SQLite3 db?
Some of the functionality I'm trying to import to Drupal:
Games I've played: http://798d4dab518a91787e0e0be5c94f8bb1.ccgames.db.94y.info/
Wins/losses: http://57442d9ce4c5063869883519f2a9cd0f.ccgames.db.94y.info/
Point history: http://9160fe29e3da336652ec98fbf7f2aeef.ccgames.db.94y.info/
Team games: http://a782c6b9be09f375e5f1b1d69f1e7c62.ccgames.db.94y.info/
I have a lot of this working on ccgames.db.94y.info, but it's ugly and doesn't allow wildcarding.