Skip to content

Instantly share code, notes, and snippets.

@bkozora
Last active August 29, 2015 14:07
Show Gist options
  • Save bkozora/cf19d5e562fe802082bc to your computer and use it in GitHub Desktop.
Save bkozora/cf19d5e562fe802082bc to your computer and use it in GitHub Desktop.
Kohana Database Class Examples
<?php
// How to insert using Kohana's Database class. Always forget the syntax...
$result = DB::insert('table', array('field1', 'field2', 'field3'))
->values(array('value1', 'value2', 'value3'))
->execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment