コボットPortal

説明(データベースアクティビティで使用している環境について)

データベースアクティビティのナレッジで使用している環境について説明します。

【利用している環境】

  • Windows 10
  • コボットStudio 2.1.1.2
  • MySQL  Ver 8.0.25
  • Microsoft ODBC Data Source(My SQL Connector/ODBC 8.0.2.5)

【データベースの情報】

項目内容
データベース名
kobot_test
テーブル名fruit
ユーザー名kobot
パスワード
kobot

【テーブル作成時のSQL】

CREATE DATABASE kobot_test;

USE kobot_test;

CREATE TABLE fruit
(
  NO int(10),
  NAME VARCHAR(10),
  PRICE INT(10)
);

INSERT INTO fruit VALUES(1,"リンゴ",100);
INSERT INTO fruit VALUES(2,"スイカ",200);
INSERT INTO fruit VALUES(3,"メロン",500);
INSERT INTO fruit VALUES(4,"ブドウ",300);
INSERT INTO fruit VALUES(5,"モモ",150);



印刷
S
Shiori is the author of this solution article.

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.