<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://truxwiki.com/index.php?action=history&amp;feed=atom&amp;title=Truxton_investigation_save</id>
	<title>Truxton investigation save - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://truxwiki.com/index.php?action=history&amp;feed=atom&amp;title=Truxton_investigation_save"/>
	<link rel="alternate" type="text/html" href="https://truxwiki.com/index.php?title=Truxton_investigation_save&amp;action=history"/>
	<updated>2026-09-09T16:09:18Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://truxwiki.com/index.php?title=Truxton_investigation_save&amp;diff=4539&amp;oldid=prev</id>
		<title>Sam: Created page with &quot;Saves the information in the investigation object to the &lt;code&gt;[Investigation]&lt;/code&gt; table in the database.  =Syntax= &lt;source lang=&quot;C&quot;&gt; int truxton_investigation_save( uint64...&quot;</title>
		<link rel="alternate" type="text/html" href="https://truxwiki.com/index.php?title=Truxton_investigation_save&amp;diff=4539&amp;oldid=prev"/>
		<updated>2021-02-16T19:49:10Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Saves the information in the investigation object to the &amp;lt;code&amp;gt;[Investigation]&amp;lt;/code&amp;gt; table in the database.  =Syntax= &amp;lt;source lang=&amp;quot;C&amp;quot;&amp;gt; int truxton_investigation_save( uint64...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Saves the information in the investigation object to the &amp;lt;code&amp;gt;[Investigation]&amp;lt;/code&amp;gt; table in the database.&lt;br /&gt;
&lt;br /&gt;
=Syntax=&lt;br /&gt;
&amp;lt;source lang=&amp;quot;C&amp;quot;&amp;gt;&lt;br /&gt;
int truxton_investigation_save( uint64_t investigation_handle );&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Parameters=&lt;br /&gt;
==&amp;lt;code&amp;gt;investigation_handle &amp;lt;/code&amp;gt;==&lt;br /&gt;
The handle to the investigation object.&lt;br /&gt;
This handle comes from calling &amp;lt;code&amp;gt;[[truxton_investigation_create]]()&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=Return value=&lt;br /&gt;
A non-zero value on success, zero on failure.&lt;br /&gt;
&lt;br /&gt;
=Remarks=&lt;br /&gt;
If you have not set the [[truxton_investigation_set_id|identifier]] of the investigation, a random one will be generated for you.&lt;br /&gt;
&lt;br /&gt;
=Sample=&lt;br /&gt;
&amp;lt;source lang=&amp;quot;C&amp;quot; highlight=&amp;quot;15&amp;quot;&amp;gt;&lt;br /&gt;
void create_investigation( void )&lt;br /&gt;
{&lt;br /&gt;
   uint64_t truxton = truxton_create();&lt;br /&gt;
&lt;br /&gt;
   uint64_t investigation = truxton_investigation_create( truxton );&lt;br /&gt;
&lt;br /&gt;
   truxton_investigation_set_id( investigation, &amp;quot;466C796E-6E27-7320-696E-6E6F63656E74&amp;quot; );&lt;br /&gt;
   truxton_investigation_set_name( investigation, &amp;quot;Collusion&amp;quot; );&lt;br /&gt;
   truxton_investigation_set_description( investigation, &amp;quot;United States vs. Michael Flynn&amp;quot; );&lt;br /&gt;
   truxton_investigation_set_case_number( investigation, &amp;quot;DC-SNAFU-2016.2020&amp;quot; );&lt;br /&gt;
   truxton_investigation_set_jurisdiction( investigation, WASHINGTON_DC );&lt;br /&gt;
   truxton_investigation_set_status( investigation, INVESTIGATION_STATUS_OPEN );&lt;br /&gt;
   truxton_investigation_set_type( investigation, INVESTIGATION_TYPE_FRAUD );&lt;br /&gt;
&lt;br /&gt;
   if ( truxton_investigation_save( investigation ) == 0 )&lt;br /&gt;
   {&lt;br /&gt;
      printf(&amp;quot;Cannot save investigation to the database.\n&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
&lt;br /&gt;
   truxton_investigation_destroy( investigation );&lt;br /&gt;
   truxton_destroy( truxton );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sam</name></author>
		
	</entry>
</feed>