パラメータ化されたステートメント
次のコード例は、パラメータをバインドしてパラメータ化されたステートメントを作成する方法を示します。
シングルユース ステートメント
Query とExec 関数は両方とも、クエリパラメータを値にバインドするための追加パラメータを受け入れます。
rows, _ := db.Query("SELECT SyohinCode, SyohinMei FROM MasterSms WHERE SyohinMei = ?", "Syohin") defer rows.Close() for rows.Next() { var ( SyohinCode string SyohinMei string ) rows.Scan(&SyohinCode, &SyohinMei) fmt.Printf("SyohinCode = %s, SyohinMei = %s\n", SyohinCode, SyohinMei) }
リユーザブル ステートメント
Prepare 関数は、プリペアドStmt オブジェクトを作成します。これは、複数のQuery およびExec 呼び出しで再利用できます。
stmt, _ := db.Prepare("SELECT SyohinCode, SyohinMei FROM MasterSms WHERE SyohinMei = ?") defer stmt.Close() rows, _ := stmt.Query("Syohin 1") defer rows.Close() for rows.Next() { var ( SyohinCode string SyohinMei string ) rows1.Scan(&SyohinCode, &SyohinMei) fmt.Printf("SyohinCode = %s, SyohinMei = %s\n", SyohinCode, SyohinMei) } rows, _ = stmt.Query("Syohin 2") defer rows.Close() for rows.Next() { var ( SyohinCode string SyohinMei string ) rows2.Scan(&SyohinCode, &SyohinMei) fmt.Printf("SyohinCode = %s, SyohinMei = %s\n", SyohinCode, SyohinMei) }