I've never had much luck with the samples either. I think someone should go through and test every sample with latest Mac OS operating system and latest LiveCode and latest Valentina install and just delete all the samples which no longer work. It would be wonderful if the samples were designed for a first time user.
<div><br></div><div>In your stack connection should look like (in this order):</div><div><br></div><div><p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande';color:#1e0090"><span style="color:#000000">  </span><span style="color:#8e920e"><b>get</b></span><span style="color:#000000"> Valentina_InitClient( </span>10<span style="color:#000000"> * </span>1024<span style="color:#000000"> * </span>1024<span style="color:#000000">,</span>"extremely long serial number stuff here"<span style="color:#000000">,)</span></p>

<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande';color:#019103"><span style="color:#000000">   </span><b>-- There has been a change so maybe serial numbers aren't needed now?</b></p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <span style="color:#8e920e"><b>get</b></span> Valentina_DebugLevel(<span style="color:#1e0090">"kLogParams"</span>)</p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande';color:#019103"><span style="color:#000000">   </span><b>-- first establish connectionRef as gConnection</b></p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <span style="color:#8e920e"><b>put</b></span> VConnection_Constructor(<span style="color:#1e0090">"localhost"</span>, <span style="color:#1e0090">"sa"</span>, <span style="color:#1e0090">"sa"</span>, <span style="color:#1e0090">15432</span>) <span style="color:#910a91">into</span> gConnection</p>

<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande';color:#019103"><span style="color:#000000">   </span><b>-- next you establish dbRef as gDatabase</b></p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <span style="color:#8e920e"><b>put</b></span> VDatabase_Constructor( gConnection ) <span style="color:#910a91">into</span> gDatabase</p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <span style="color:#8e920e"><b>get</b></span> VDatabase_DateFormat(gDatabase, <span style="color:#1e0090">"kYMD"</span>)</p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <span style="color:#8e920e"><b>get</b></span> VDatabase_DateSep(gDatabase, <span style="color:#1e0090">"-"</span>)</p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <span style="color:#8e920e"><b>get</b></span> VDatabase_Open( gDatabase, b_l_database.vdb )</p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande';min-height:15.0px">   </p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <b>if</b> it <span style="color:#910a91">contains</span> <span style="color:#1e0090">"ERROR"</span> <b>then</b>    </p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande';color:#1e0090"><span style="color:#000000">      </span><span style="color:#8e920e"><b>answer</b></span><span style="color:#000000"> </span>"there was an error in DatabaseOpen"</p>

<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">            <b>exit</b> <span style="color:#910a91">to</span> <span style="color:#1f9091">top</span></p>
<p style="margin:0px 0px 0px 0px;font:12.0px 'Lucida Grande'">   <b>end</b> <b>if</b></p></div>