この記事では、主に YII2 データベース クエリの実践に関する関連情報を紹介します。必要な方は、
yii2 フレームワークの初期探索、追加、削除、変更、クエリなどの基本的なデータベース操作の簡単な実践を参照してください。クエリ。
データベース構成。
/config/db.php データベースを設定します
演習プロセスでは、テストライブラリ-「テストテーブル-」があり、次の2つのレコードがあります
mysql> select * from test;
+---+ ---- ----+
| 名前 |
+----+------+
|
+----+--------+
18 行セット (0.00 秒)
$sql = "select * from test where 1";
$res = Test::findBySql($sql)->all();
var_dump(count($res ) ); // res->2
// findbysql は SQL インジェクションを防ぎます
$id = '1 or 1=1';
$sql = "select * from test where id = " . $id;
$res = Test::findBySql($sql)- > ;all();
var_dump(count($res)); // res-> 2
$sql = "select * from test where id = :id";
// ロケーターは SQL インジェクションを自動的に防止します
$ res = Test::findBySql($sql,array(":id"=>$id))->all();
var_dump(count($res)); // res->1
操作を追加
// add Operation
$test = new Test();
$test->name = 'test';
// 合法性検証
$test->validate();
if($test->hasErrors() ) {
echo "Illegal data";
die;
}
$test->save();
クエリ操作
// id = 1
$res = Test::find()->where(['id' => 1])->all();
var_dump(count($res) )); //1
// id > 0
$res = Test::find()->where(['>','id',0])->all();
var_dump (count($res)); //2
// id > =1 id $res = Test::find()->where(['between','id',1, 2])->all();
var_dump(count($res)); //2
// 名前フィールド like
$res = Test::find()->where(['like', ' name', 'cuihuan'])->all();
var_dump(count($res)); //2
// クエリの使用方法 obj->array
$res = Test::find()- > ;where(['between','id',1,2])->asArray()->all();
var_dump($res[0]['id']); //2
/ / バッチ クエリ、大量のメモリ操作のバッチ クエリの場合
foreach (Test::find()->batch(1) as $test) {
var_dump(count($test));
}
//削除
// 削除を選択
$res = Test::find()->where(['id'=>1])->all();
$res[0]->delete() ;
// 直接削除
var_dump(Test::deleteAll('id>:id', array(':id' => 2)));
$res = Test::find()->where(['id'=>4])->one();
$res->name = "update" ;
$res->save();
$stu = Student::find()->where(['name'=>'xiaozhuai'])->one();
var_dump ( $stu->id);
//基本的には
$scores_1 = $stu->hasMany('appmodelScore',['stu_id'=>$stu->id])->asArray() を取得します- >all();
$scores_2 = $stu->hasMany(Score::className(),['stu_id'=>'id'])->asArray()->all();
var_dump($scores_1);
var_dump($scores_2);
まず、関連する呼び出し関数を Student モデルにカプセル化します
namespace appmodels;
Yii を使用する;
yiidbActiveRecord を使用する;
class Student extends ActiveRecord
{
public static function tableName()
{
return 'student ' ;
}
//スコア情報を取得します
public function getScores()
{
$scores = $this->hasMany(Score::className(), ['stu_id' => 'id'])-> ; asArray()->all();
return $scores;
}
}
その後、2 つの呼び出しメソッドを直接呼び出します
//関数のカプセル化後に呼び出します
$scores = $stu->getScores( ) ;
var_dump($scores);
//__get
$scores = $stu->scores;
var_dump($scores);
の自動呼び出しメソッドを使用します。最後に
上記のデプロイと使用yii2 プロセス中の追加、削除、変更、関連クエリなどのいくつかの基本操作。