1

通常のデータベースとは別の my_legacy_db というレガシー データベースがあります。

my_legacy_db

ユーザー - 電子メール - ユーザー名 - 名前

したがって、最初の部分はフィールド名を生成し、すべてを辞書に入れてクエリを構築するために機能します。問題は、このクエリを実行するときです。

db().select(my_legacy_db.users)

I get this error:
In [20] : db().select(my_legacy_db.users)
Traceback (most recent call last):
  File "/opt/web-apps/web2py/gluon/contrib/shell.py", line 233, in run
    exec compiled in statement_module.__dict__
  File "<string>", line 1, in <module>
  File "/opt/web-apps/web2py/gluon/dal.py", line 7578, in select
    return adapter.select(self.query,fields,attributes)
  File "/opt/web-apps/web2py/gluon/dal.py", line 1307, in select
    sql = self._select(query, fields, attributes)
  File "/opt/web-apps/web2py/gluon/dal.py", line 1196, in _select
    raise SyntaxError, 'Set: no tables selected'
SyntaxError: Set: no tables selected

In [21] : print (flickr_db.users)
users

In [22] : print flickr_db
<DAL {'_migrate_enabled': True, '_lastsql': "SET sql_mode='NO_BACKSLASH_ESCAPES';", '_db_codec': 'UTF-8', '_timings': [('SET FOREIGN_KEY_CHECKS=1;', 0.0002460479736328125), ("SET sql_mode='NO_BACKSLASH_ESCAPES';", 0.00025606155395507812)], '_fake_migrate': False, '_dbname': 'mysql', '_request_tenant': 'request_tenant', '_adapter': <gluon.dal.MySQLAdapter object at 0x91375ac>, '_tables': ['users'], '_pending_references': {}, '_fake_migrate_all': False, 'check_reserved': None, '_uri': 'mysql://CENSORED', 'users': <Table 'username': <gluon.dal.Field object at 0x9137b6c>, '_db': <DAL {...}>, 'cycled': <gluon.dal.Field object at 0x94d0b8c>, 'id': <gluon.dal.Field object at 0x95054ac>, 'ALL': <gluon.dal.SQLALL object at 0x969a7ac>, '_sequence_name': 'users_sequence', 'name': <gluon.dal.Field object at 0x9137ecc>, '_referenced_by': [], '_singular': 'Users', '_common_filter': None, '_id': <gluon.dal.Field object at 0x95054ac>}>, '_referee_name': '%(table)s', '_migrate': True, '_pool_size': 0, '_common_fields': [], '_uri_hash': 'dfb3272fc537e3339819a1549180722e'}>

ここで何か間違ったことをしていますか?レガシー データベースは /databases に組み込まれていませんか? 助けてくれてありがとう。

更新:モデルシェルでアンソニーが提案したように試しました:

In [3] : db(my_legacy_db.users).select()
Traceback (most recent call last):
  File "/opt/web-apps/web2py/gluon/contrib/shell.py", line 233, in run
    exec compiled in statement_module.__dict__
  File "<string>", line 1, in <module>
  File "/opt/web-apps/web2py/gluon/dal.py", line 7577, in select
    fields = adapter.expand_all(fields, adapter.tables(self.query))
  File "/opt/web-apps/web2py/gluon/dal.py", line 1172, in expand_all
    for field in self.db[table]:
  File "/opt/web-apps/web2py/gluon/dal.py", line 6337, in __getitem__
    return dict.__getitem__(self, str(key))
KeyError: 'users'

これで、users が my_legacy_db で定義され、すべての構文が正しいことがわかりました。これは、db ファイルが正しく生成されていないために発生するエラーですか? それとも、選択構文にまだ何か問題がありますか?

4

1 に答える 1

1

「users」がテーブルの名前であり、すべてのレコードとすべてのフィールドを選択する場合は、次のようにします。

db(my_legacy_db.users).select()

クエリは内部db()ではなく内部に移動しますselect()select()ここに、返されるフィールドをリストするか、すべてのフィールドが必要な場合は空のままにします)。上記の行でmy_legacy_db.usersは、実際にはクエリではなく単なるテーブルであることに注意してください。これは、テーブル内のすべてのレコードが必要であることをweb2pyに伝えるためのショートカットです。

次のこともできます。

db().select(my_legacy_db.users.ALL)

これは、すべてのフィールドが必要であることを示し、クエリを除外することにより、テーブル内のすべてのレコードが必要であると想定します。

詳細については、を参照してください。

于 2012-04-20T18:36:52.430 に答える