Difference between revisions of "Nsfb"

From AOLserver Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 
= nsfb 1.0 =
 
= nsfb 1.0 =
Created by [mailto:richard.kotal@dolphingames.com Richard Kotal].
+
Created by [mailto:info@waplikace.cz Richard Kotal].
  
  

Revision as of 12:28, 14 September 2006

nsfb 1.0

Created by Richard Kotal.


This is internal AOLserver database driver for Firebird|Interbase database (http://www.firebirdsql.org).

  • support read and write BLOB data
  • support read and write ARRAY data
  • support full size of varchar (32765 bytes) or char (32767 bytes)
  • support many configuration options such as charset, dialect, transaction isolation level, ...
  • support all kind of the data types

Download page, nsfb-1.0.tgz


Simple sample (update array data):

   set db [ns_db gethandle fb15]
   ns_db dml $db "set transaction"
   ns_db sp_start $db "update job set language_req = ? where job_code = 'CEO'"
   ns_db sp_setparam $db "1" "" "in" "[list Eng "" Ger "" Itl]"
   ns_db sp_exec $db 
   ns_db dml $db "commit"
   ns_db releasehandle $db