<div dir="ltr">Hello coders.<div><br></div><div>You'll see, I am developing a query builder for Gambas based on a PHP query builder from Nil Portugues (<a href="https://github.com/nilportugues/php-sql-query-builder" target="_blank">https://github.com/nilportugues/php-sql-query-builder</a>).</div><div><br></div><div>At the moment I have almost completed a basic API for `INSERT` and `SELECT` very similar to the original one, with some variations of course. Something like this:</div><div><br></div><div><font face="courier new, monospace">  Dim builder As SelectBuilder = New SelectBuilder(hConn)<br>  Dim result As String<br>  <br>  builder.select("fake", ["foo", "bar", "baz"]).where().equals("bar", "baz")<br>  builder.subWhere("OR").notLike("foo", "something").greaterThan("baz", 6)<br>    <br>  result = builder.getSql()<br></font></div><div><font face="courier new, monospace">  ' Output: "SELECT fake.foo, fake.bar, fake.baz FROM fake WHERE (fake.bar = 'baz') AND ((fake.foo NOT LIKE 'something') OR (fake.baz > 6))"</font></div><div><br></div><div><div>So, I want to share this early stage for (maybe) get some feedback.</div><div>Well, now on topic, I'm writing documentation for this stage, but I'm unsure about the best place for it. Usually I create a separated repository and work with ReadTheDocs and reStructuredText, however, <a href="http://gambaswiki.org">gambaswiki.org</a> seems to me a good place to share the project.</div><div><br></div><div>What do you think? What recommendations or advices can you give to me? Thank you.</div><div><br></div><div>PD: If someone wants to look up the actual code, here is the URL: <a href="https://gitlab.com/xibalba/diana">https://gitlab.com/xibalba/diana</a></div>-- <br><div dir="ltr" class="m_-5844608081706199707gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>E. Yeshua Rodas<br></div>DTI - UPNFM<br></div></div></div></div>