No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
student
- PC Specs
- HP ZV6100 Athlon 64 3200+ 2GB DDR
7 Posted Topics
I have problem with datatypes. When I use the text datatype on SQL Express, I get "The data types text and nvarchar are incompatible in the equal to operator." error. Wwhen I set my variables to "varchar" or "nvarchar", I don't get an error, but my update command does not … | |
[code] protected void btnAdd_Click(object sender, EventArgs e) { string connectionString = "Data Source=localhost\\sqlexpress;Initial Catalog=JobApplication; Trusted_Connection=True; Integrated Security=True"; SqlConnection mySqlconn = new SqlConnection(connectionString); mySqlconn.Open(); string query = "INSERT into JobVacancy(JobName, BriefDesc, FullDesc, ClosingDate) VALUES (@jobtitle, @briefdesc, @fulldesc, @closedate)"; SqlCommand mySqlcmd = new SqlCommand(query, mySqlconn); mySqlcmd.Parameters.AddWithValue("@jobtitle",jobtitle.Text); mySqlcmd.Parameters.AddWithValue("@briefdesc", briefdesc.Text); mySqlcmd.Parameters.AddWithValue("@fulldesc", fulldesc.Text); mySqlcmd.Parameters.AddWithValue("@closedate", closingdate.Text); … | |
I am not sure if I am in the right forum. If not, I apologize. ------------------------------- I've been working on an assignment in school using Visual Studio. I want to continue at home so I downloaded Visual Studio Express, but I don't know how to transfer the files! In Eclipse, … | |
I am trying to make a login page using php. index.php contain form for "login" and "password" which will be check by "process.php" My intention is: if the login or password is incorrect, an alert box will pop up telling the user the case, and redirect back to index.php Here … | |
Anybody knows where I can find tutorial on "map zooming animation"? I plan to do a website on Bali. I would like to add an opening animation showing a world map, and then zooming in to the island of Bali. Thanks! | |
Hi, I don't know if I am in the right board or not cause I don't know if my question deals with html, css, or javascript. When I surf, sometimes I see a small "printer" icon with word "print" beside it, usually it is placed at the bottom of the … | |
I am trying to make text based blackjack game. I already made : - Card class which create new card based on integer - Deck class which consists of Deck LinkedList populated by Card. I also made 2 new LinkedLists for gambler and dealer. I already managed to remove elements … |
The End.