mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
11 lines
250 B
PHP
11 lines
250 B
PHP
<?php
|
|
$db = new sqlite_db(':memory:');
|
|
|
|
$db->query("CREATE TABLE foo(c1 date, c2 time, c3 varchar(64))");
|
|
$db->query("INSERT INTO foo VALUES ('2002-01-02', '12:49:00', NULL)");
|
|
|
|
$r = $db->query("SELECT * from foo");
|
|
|
|
$result = $r->fetch_array();
|
|
?>
|