Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ループステートメントを使用せずにodbcアダプターを使用してデータベースから配列値をロードするのを手伝ってください。
ありがとう、
S.ソム
言語を指定しなかったため、mxODBC を使用した Python の例を次に示します。
import mx.ODBC.unixODBC as mx db = mx.DriverConnect('DSN=[your DSN here]') c = db.cursor() results = c.execute("SELECT * from tableName").fetchall()
特定の言語など、より詳細な情報があれば、希望に近い回答が得られる可能性があります。