403Webshell
Server IP : 103.119.228.120  /  Your IP : 3.144.100.252
Web Server : Apache
System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User : nobody ( 99)
PHP Version : 5.6.40
Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime
MySQL : ON |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /usr/share/doc/unixODBC-2.3.1/doc/ProgrammerManual/Tutorial/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /usr/share/doc/unixODBC-2.3.1/doc/ProgrammerManual/Tutorial/intro.html
<HTML>
<HEAD>
<LINK REL="stylesheet" href="odbc.css">
<TITLE>Introduction</TITLE>
</HEAD>
<BODY bgcolor="white">

<table width="90%" cols="3" border="0">
<TR>
   <TD colspan="3" class="big">Introduction</TD>
</TR>
<TR>
  <TD colspan="3">Welcome to a short tutorial on ODBC programming. The goal of this tutorial is 
    to introduce a C-Programmer to ODBC programming. During this tutorial we will
    code a simple program which connects to a database via ODBC and reads some data. 
	There won't be any information on how to program ODBC Drivers or about <EM>unixODBC</EM> 
	internals. Configuration won't be covered too.
    The program developed throughout this tutorial was originally coded under WinNT
	and later ported without any adjustments to Linux and <EM>unixODBC</EM>. This is
	how compatibility should work :)
	<P>
	The information given within this tutorial are brief at best. Please
	take it as a pointer where and how to start. 
	</P><BR>
   </TD>
</TR>
</TABLE>
<TABLE COLS="3" Width="90%" border="0">
<TR><TD class="head" width="25%">Requirements</TD>
    <TD width="2%">&nbsp;</TD>
    <TD width="73%">I assume that you have</TD>
</TR>
<TR>
	<TD colspan="2">&nbsp;</TD>
	<TD><UL>
		   <LI>a system with unixODBC installed and with at least one
	           working datasource configured. 
		   <LI>the include files installed under <CODE>/usr/include/odbc</CODE>
		   <LI>a compiler installed and that you know how to use it ;)
		</UL>
	</TD>
</TR>
<TR><TD class="head" width="25%">Compiling</TD>
    <TD width="2%">&nbsp;</TD>
	<TD>If gcc is installed type:</TD>
</TR>
<TR>
	<TD colspan="2">&nbsp;</TD>
	<TD><CODE>gcc odbc.c -o odbc -lodbc</CODE><BR>
	    which will result in an executable named "odbc".
    </TD>
</TR>
<TR><TD class="head"><A nAME="tab">Database</A></TD>
    <TD width="20">&nbsp;</TD>
	<TD>Our database will have a single table:</TD>
</TR>
<TR>
	<TD colspan="2">&nbsp;</TD>
	<TD><TABLE COLS=2 Border="0" bgcolor="#efefef">
	    <TR>
		   <TH colspan=2 class="head">tkeyuser</TH>
		</TR>
		<TR>
		   <TD>iduser</TD>
		   <TD>sequence</TD>
		</TR>
		<TR>
		   <TD>dtname</TD>
		   <TD>char(40)</TD>
		</TR>
		<TR>
		   <TD>dtmaxSize</TD>
		   <TD>Integer</TD>
		</TR>
		
	    </TABLE>
		<BR>
		Our datasource will be named "web" and access is 
		granted to the user "christa" with no password.
    </TD>
</TR>

</table>

</BODY>
</HTML>

Youez - 2016 - github.com/yon3zu
LinuXploit