summaryrefslogtreecommitdiffstats
path: root/samples/config.php
blob: 993d07b133c550ad87e39edf0ed46ef7260d7d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
	$mysql_server="mysql:dbname=sampleDB;host=192.168.3.251";
	$mysql_user = "sampleDB";
	$mysql_pass = "sampleDB";
	$mysql_db = "sampleDB";
	$excel_file = "../common/excel_sample.xls";
	
	//necessary for PostgreSQL related samples only 
	$postrgre_connection = "host=localhost port=5432 dbname=sampleDB user=root password=1234";
	//necessary for Oracle related samples only 
	$oci_connection = "some here";
	//necessart for SQL Anywhere connection
	$sasql_conn = "uid=DBA;pwd=sql";
?>