當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Manager::insert方法代碼示例

本文整理匯總了PHP中Illuminate\Database\Capsule\Manager::insert方法的典型用法代碼示例。如果您正苦於以下問題:PHP Manager::insert方法的具體用法?PHP Manager::insert怎麽用?PHP Manager::insert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Database\Capsule\Manager的用法示例。


在下文中一共展示了Manager::insert方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: invite

 /**
  * Invite a new player to guild
  *
  * @return void
  */
 public function invite(Character $player, $gid)
 {
     Capsule::insert('INSERT INTO `guild_invites` (`player_id`, `guild_id`) VALUES (?, ?)', [$player->id, $gid]);
 }
開發者ID:Codex-NG,項目名稱:cornexaac,代碼行數:9,代碼來源:Guild.php

示例2: setBonusAttribute

 public function setBonusAttribute($value)
 {
     DB::delete('delete from t_event_bonuses where event_id = ? and player_id = ?', [$this->event->id, $this->player->id]);
     if ($value && $value != 'null') {
         DB::insert('insert into t_event_bonuses (event_id, player_id, bonus_id) values (?, ?, ?)', [$this->event->id, $this->player->id, $value]);
     }
 }
開發者ID:MadeByGlutard,項目名稱:GreenMountainGaming.com,代碼行數:7,代碼來源:Score.php

示例3: testRawQueries

 public function testRawQueries()
 {
     // Insert
     $inserted = Capsule::insert('INSERT INTO articles (title) VALUES (:title)', ['title' => static::ARTICLE_TITLE]);
     $this->assertTrue($inserted);
     // Last Insert ID
     $id = Capsule::connection()->getPdo()->lastInsertId();
     $this->assertEquals(1, $id);
     // Select
     $articles = Capsule::select('SELECT * FROM articles WHERE id = ?', [$id]);
     $this->assertCount(1, $articles);
     $this->assertEquals($articles[0]->title, static::ARTICLE_TITLE);
     // Delete
     $deleted = Capsule::delete('DELETE FROM articles WHERE id = ?', [$id]);
     $this->assertEquals(1, $deleted);
     // Count
     $count = Capsule::selectOne('SELECT COUNT(*) as nb FROM articles');
     $this->assertEquals(0, $count->nb);
 }
開發者ID:jguyomard,項目名稱:silex-capsule-eloquent,代碼行數:19,代碼來源:CapsuleServiceProviderTest.php

示例4: seedUsersTable

 /**
  * Create some users for the tests to use
  */
 private function seedUsersTable()
 {
     DB::insert('INSERT INTO ' . DB::getTablePrefix() . 'users (id, name, email, created_at, updated_at) VALUES (?, ?, ?, datetime(), datetime())', [1, 'Chris Gmyr', 'chris@test.com']);
     DB::insert('INSERT INTO ' . DB::getTablePrefix() . 'users (id, name, email, created_at, updated_at) VALUES (?, ?, ?, datetime(), datetime())', [2, 'Adam Wathan', 'adam@test.com']);
     DB::insert('INSERT INTO ' . DB::getTablePrefix() . 'users (id, name, email, created_at, updated_at) VALUES (?, ?, ?, datetime(), datetime())', [3, 'Taylor Otwell', 'taylor@test.com']);
 }
開發者ID:elegantdevelopment,項目名稱:laravel-messenger,代碼行數:9,代碼來源:TestCase.php

示例5: test_custom_meta_model

 public function test_custom_meta_model()
 {
     // This test is ridiculously complicated. There has to be an easier way!
     // If tests fail or error, you may have to clear out test.sqlite before running again
     // The `CustomModelParent` model uses a custom model to handle it's meta
     // The `CustomModelChild` handles meta for `CustomModelParent`
     // The `CustomModelChild` uses `custom_model_meta` as its table
     // First, create the `custom_model_parents` table and insert a record
     Capsule::schema()->create('custom_model_parents', function ($table) {
         $table->increments('id');
         $table->string('dummy', 255);
     });
     Capsule::insert('insert into custom_model_parents (dummy) values (?)', ['data']);
     // Second, create the `custom_model_meta` table
     Capsule::schema()->create('custom_model_meta', function ($table) {
         $table->increments('id');
         $table->integer('metable_id')->unsigned();
         $table->string('metable_type', 255);
         $table->string('key', 128);
         $table->text('value');
         $table->index('metable_id');
         $table->index('key');
     });
     // Start up the parent
     $model = CustomModelParent::find(1);
     // Now test that the CustomModelParent is working
     $this->assertEquals('this is a CustomModelParent method', $model->modelMethod(), 'failed to use custom method for Parent');
     // Test that data is being saved to the correct table
     $model->addMeta('testTable', 'value');
     $results = Capsule::select('select * from custom_model_meta');
     $this->assertEquals(['id' => 1, 'metable_id' => '1', 'metable_type' => 'Phoenix\\EloquentMeta\\Test\\Stubs\\CustomModelParent', 'key' => 'testTable', 'value' => 'value'], $results[0], "failed to get save meta to correct table");
     // Last, clean up our tables
     Capsule::schema()->drop('custom_model_meta');
     Capsule::schema()->drop('custom_model_parents');
 }
開發者ID:RonnyLV,項目名稱:eloquent-meta,代碼行數:35,代碼來源:EloquentMetaTest.php


注:本文中的Illuminate\Database\Capsule\Manager::insert方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。