Search results for query: *

  • Users: Noinx
  • Order by date
  1. N

    Visual Basic 2005 Express Deployment

    Open My Project > Publish > Options Make sure Block application from being activated via a URL is UNCHECKED Also, My Project > Publish > Application Files Make sure INCLUDE is selected next to MySql????.dll
  2. N

    MySQL LAST_INSERT_ID() Problems

    Not sure if you found an answer yet. To get the last inserted id for a given table, the id field must be set to auto increment. There is no need to do this: LAST_INSERT_ID(id + 1) Don't reference the id column at all while performing updates. You will continue to use the same id. When...
Back
Top