mysqls.pp 953 B

1234567891011121314151617181920212223242526272829303132
  1. program mysqls;
  2. uses mysql,mysql_com;
  3. begin
  4. Writeln('PASCAL');
  5. Writeln ('MYSQL : ',sizeof(TMYSQL),' options : ',sizeof(st_mysql_options));
  6. writeln ('MYSQL_DATA : ',sizeof(TMYSQL_DATA));
  7. writeln ('MYSQL_ROWS : ',sizeof(TMYSQL_ROWS));
  8. writeln ('MYSQL_ROW : ',sizeof(TMYSQL_ROW));
  9. writeln ('MYSQL_FIELD : ',sizeof(TMYSQL_FIELD));
  10. writeln ('MYSQL_RES : ',sizeof(TMYSQL_RES));
  11. writeln ('MEM_ROOT : ',sizeof(TMEM_ROOT));
  12. writeln ('my_bool : ',sizeof(my_bool));
  13. writeln ('TNET : ',sizeof(TNET),' TNET.nettype : ',SizeOf(net_type));
  14. writeln ('USED_MEM : ',sizeof(TUSED_MEM));
  15. end.
  16. $Log$
  17. Revision 1.3 2004-09-30 19:34:47 michael
  18. + Split everything in version 3 and version 4
  19. Revision 1.1 2004/09/28 18:38:23 michael
  20. + Moved to subdir, switching to version 4.0
  21. Revision 1.2 2002/09/07 15:42:53 peter
  22. * old logs removed and tabs fixed
  23. Revision 1.1 2002/01/29 17:54:54 peter
  24. * splitted to base and extra
  25. }