The function mysqli_stmt_send_long_data() is in the manual, but mysqli requires mysql 4.1.
Why are you trying to shove a 700-meg blob into a database? Every app I've seen that handles huge binary objects puts them into a filesystem, stores the location in a database, uses SQL to find the location, and retrieves the blob outside of SQL. Is there a problem with that approach?