inserting textbox values into database

前端 未结 6 1012
陌清茗
陌清茗 2020-12-16 07:57

im a newbie here and would like some advice on C# programming

i would like to store values from a textbox into a database. so far, i have the following:

<         


        
6条回答
  •  佛祖请我去吃肉
    2020-12-16 08:12

    the first thing you want to do to find out what's going wrong is put

    Console.WriteLine(thisQuery);
    

    after the line StringthisQuery=

    This will show you exactly what statement you're calling the Db with, and it may be clear just from looking at the output what's wrong with the statement.

提交回复
热议问题