summaryrefslogtreecommitdiffstats
path: root/samples/grid/xx_sample_sqlite3_connector.php
blob: 762dc87834368d5e290418e70581d410f22d8add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
	require_once("../config.php");
	
	$db = new SQLite3('mysqlitedb.db');

	require("../../codebase/grid_connector.php");
	require("../../codebase/db_sqlite3.php");
	
	$grid = new GridConnector($db,"SQLite3");
	$grid->render_table("grid50000","item_id","item_nm,item_cd");
	
?>