Help for this page

Select Code to Download


  1. or download this
        /^$RE{num}{int}$/ ? DBI::SQL_INTEGER : 
        /^$RE{num}{real}$/ ? DBI::SQL_DOUBLE :
    
  2. or download this
    use DBI qw(:sql_types);
    
    # Mapping from string to sql constant
    our %type_mapping = (
      integer => SQL_INTEGER,
      int     => SQL_INTEGER,