
----------------------------------------------------------------------

  SQL Engine Ver.3.15
      CGI module for your SQL programming.
      for Perl/S-JIS.
                        Producted by Tom Yuhki all right reserved
                        E-Mail: deagle@edit.ne.jp
                        URL   : http://www.edit.ne.jp/~deagle/se/e/

----------------------------------------------------------------------

1.Greeting
Thank you for downloading SQL Engine.
Documents are presented at online.
Please read that.

	http://www.edit.ne.jp/~deagle/se/e/manual/

If you want offline manual, please download.
@http://www.edit.ne.jp/~deagle/se/e/

And I have some sub-programs, sample source, SQL Administrator, Listener CGI (for connect to other server)...

If you need help, access here.
	http://www.edit.ne.jp/~deagle/se/e/support/



-------------------------------------------
If you already understood SQL...

If you feel boring to read manual, please coding as below.
You can use SQL same as standard SQL if that act as simple read/write.

And, SQL Engine doesn't have any functions for disconnect.
Execute the function Se::Commit(); for file flashing, when you finished all processes.

-------------------------
require './sql-engine.pl';

# Open a table by CSV file
Se::Execute("OPEN TABLE SAMPLE FILE 'sample.csv'");

# Execute query
Se::Execute("SELECT * FROM SAMPLE WHERE NO > 2 ORDER BY TITLE");
while ( Se::Fetch( $no, $title, $time, $place ) == 0 ) {
	print "$no, $title, $time, $place\n";
}

# Execute non-query
Se::Execute("UPDATE SAMPLE SET TITLE = 'Doraemon', BROADCAST_TIME = 30 WHERE NO = 3");

# Commit (File flashing)
Se::Commit();
-------------------------


