示例#1
0
 /// <summary>
 /// BindText
 /// </summary>
 /// <param name="index"></param>
 /// <param name="bLong"></param>
 /// <returns>LastResult</returns>
 public int BindText(int index, string bText)
 {
     if ((LastResult = CSSQLite.sqlite3_bind_text(vm, index, bText, -1, null)) == CSSQLite.SQLITE_OK)
     {
         LastError = "";
     }
     else
     {
         LastError = "Error " + LastError + "binding Text [" + bText + "]";
     }
     return(LastResult);
 }