Post Thu Apr 17, 2014 6:57 am

Preliminary Search Code Implemented

Hello All.

I have started coding the text search functions. these are the ones used in the PnP window, starmap, inventory, assets, and a few other places i cant think of right now.
if you decide to login and test it, please be gentle, as it is just a very rough draft, and not close to finished.
it will prolly NOT give results, and if it does, they will be strange, as most of the code is notes, todos, and placeholders.....for instance....
  Code:
    switch (searchID) {
      case 1:
            query = " SELECT "
                    " FROM  "
                    " WHERE  LIKE %u ";
            break;
      case 2:           //
            query = " SELECT "
                    " FROM  "
                    " WHERE  LIKE %u ";
            break;

is one of the DB query strings i have in place right now...

however, it is in the works.

~allan