Click here to Skip to main content
15,796,025 members
Home / Discussions / C#
   

C#

 
Questionhow to take a table name from a text box! Pin
mpvkrishnadhar3-Jan-12 8:39
mpvkrishnadhar3-Jan-12 8:39 
AnswerRe: how to take a table name from a text box! Pin
PIEBALDconsult3-Jan-12 8:43
professionalPIEBALDconsult3-Jan-12 8:43 
GeneralRe: how to take a table name from a text box! Pin
mpvkrishnadhar3-Jan-12 8:46
mpvkrishnadhar3-Jan-12 8:46 
AnswerRe: how to take a table name from a text box! Pin
Luc Pattyn3-Jan-12 9:05
sitebuilderLuc Pattyn3-Jan-12 9:05 
AnswerRe: how to take a table name from a text box! Pin
Luc Pattyn3-Jan-12 9:04
sitebuilderLuc Pattyn3-Jan-12 9:04 
SuggestionRe: how to take a table name from a text box! Pin
AHSAN1114-Jan-12 5:38
professionalAHSAN1114-Jan-12 5:38 
GeneralRe: how to take a table name from a text box! Pin
Luc Pattyn4-Jan-12 5:49
sitebuilderLuc Pattyn4-Jan-12 5:49 
AnswerRe: how to take a table name from a text box! Pin
AHSAN1113-Jan-12 23:02
professionalAHSAN1113-Jan-12 23:02 
Try the following:

VB
string q = "create table " + Textbox1.text + "(enum number,ename varchar2(10),sal number)";


a better way (cleaner and easily readable) of doing it would be to use a local string variable to store the table name from the text box and concatenate the string using that variable.

C#
string temp = Textbox1.Text;
string q = "create table "+temp+ " (enum number,ename varchar2(10),sal number)";

GeneralRe: how to take a table name from a text box! Pin
Luc Pattyn4-Jan-12 4:14
sitebuilderLuc Pattyn4-Jan-12 4:14 
GeneralRe: how to take a table name from a text box! Pin
AHSAN1114-Jan-12 5:31
professionalAHSAN1114-Jan-12 5:31 
AnswerRe: how to take a table name from a text box! Pin
Luc Pattyn4-Jan-12 5:41
sitebuilderLuc Pattyn4-Jan-12 5:41 
GeneralRe: how to take a table name from a text box! Pin
mpvkrishnadhar4-Jan-12 5:23
mpvkrishnadhar4-Jan-12 5:23 
AnswerRe: how to take a table name from a text box! Pin
Luc Pattyn4-Jan-12 5:34
sitebuilderLuc Pattyn4-Jan-12 5:34 
GeneralRe: how to take a table name from a text box! Pin
mpvkrishnadhar4-Jan-12 5:53
mpvkrishnadhar4-Jan-12 5:53 
GeneralRe: how to take a table name from a text box! Pin
AHSAN1115-Jan-12 3:18
professionalAHSAN1115-Jan-12 3:18 
Questionwhen i delete my program (in C#) the database still exists - how to delete him ? Pin
goldsoft3-Jan-12 5:51
goldsoft3-Jan-12 5:51 
AnswerRe: when i delete my program (in C#) the database still exists - how to delete him ? Pin
Richard Andrew x643-Jan-12 7:00
professionalRichard Andrew x643-Jan-12 7:00 
GeneralRe: when i delete my program (in C#) the database still exists - how to delete him ? Pin
Gali19783-Jan-12 10:33
Gali19783-Jan-12 10:33 
GeneralRe: when i delete my program (in C#) the database still exists - how to delete him ? Pin
Richard Andrew x643-Jan-12 10:36
professionalRichard Andrew x643-Jan-12 10:36 
AnswerRe: when i delete my program (in C#) the database still exists - how to delete him ? Pin
PIEBALDconsult3-Jan-12 8:39
professionalPIEBALDconsult3-Jan-12 8:39 
GeneralRe: when i delete my program (in C#) the database still exists - how to delete him ? Pin
Paladin20003-Jan-12 10:49
Paladin20003-Jan-12 10:49 
QuestionOdbcDataReader calling IsDBNull changes the behaviour of Get methods Pin
__John_3-Jan-12 4:16
__John_3-Jan-12 4:16 
AnswerRe: OdbcDataReader calling IsDBNull changes the behaviour of Get methods Pin
kevinnicol3-Jan-12 4:46
kevinnicol3-Jan-12 4:46 
GeneralRe: OdbcDataReader calling IsDBNull changes the behaviour of Get methods Pin
__John_3-Jan-12 5:10
__John_3-Jan-12 5:10 
AnswerRe: OdbcDataReader calling IsDBNull changes the behaviour of Get methods Pin
Dan Mos3-Jan-12 5:18
Dan Mos3-Jan-12 5:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.