Click here to Skip to main content
Page 1 of 115
Page Size: 10 · 25 · 50


Tag filtered by:  MySQL [x]
Question 21 Sep 2014   license: CPOL
Hi, I should first apologize as i may be in violation with my question, i am learning and it is my first time doing this so please excuse my poor forum skills. I am building an ASP.Net web pages application in Visual Basic , with Visual Studio 2013 IDE (Ultimate). My data will be in an...
Answer 21 Sep 2014   license: CPOL
This is not a direct solution to your problem, but might help you to find out what is happening.You could use a tool to analyze the traffic on your computer in order to see what is going on.Sysinternals is a good place to start for different windows tools.Sysinternals Networking...
Answer 20 Sep 2014   license: CPOL
Data transfer and "querying" imply the use of bandwidth and depend on how many rows are being requested per query. Doing the math : 300,000 Kb / 20*60 seconds = 250kb/sec which is reasonable.Try enabling compression.
Question 20 Sep 2014   license: CPOL
I have one windows application which keep connecting to mySQL database which is on db4Free. I found that my data usage is really high whenever i connected to that database. Data usage I found is 300 MB per 20 Minutes.. I even not used any image upload. I am just reading data from that mySQL...
Answer 20 Sep 2014   license: CPOL
The solution below is with the assumption that the "ID" column is not auto incremented value.1. The user enters the value of the 'ID' from the front end.2. Check if that value exists in your dataset.3. If it does not exists in your dataset then insert the value in the database.4. If...
Question 20 Sep 2014   license: CPOL
Imports MySql.Data.MySqlClientPublic Class UserAdminPublic mycon As New MySqlConnectionPublic myadap As New MySqlDataAdapterPublic mycmd As New MySqlCommandPublic myds As New DataSetPublic rec As IntegerPublic sb As BooleanPublic idnum As StringPublic trec As IntegerSub...
Article 18 Sep 2014   license: CPOL
A propertymapping extension for DataReaders
Answer 15 Sep 2014   license: CPOL
how can i connect a asp.net feedback form to mysql database...????
Article 14 Sep 2014   license: CPOL
This article describes how we write code while developing web application which results in SQL injection vulnerability and how we should write code to prevent it.
Answer 13 Sep 2014   license: CPOL
https://twitter.com/tradeblash/status/510959404733038592[^]
Answer 13 Sep 2014   license: CPOL
thank you. and I regret my bad languages and I am sorry If I offended you. Have a good day!
Question 13 Sep 2014   license: CPOL
I have Northwind Access file and newly installed MySQL server.I would like to add all Northwind DB including all relationships and etc into MySQL.simple query will do enough I guess, but I am an novice in DB field.anyone knows how to do that?Your help and advice will do a lot to...
Answer 13 Sep 2014   license: CPOL
yikes - you might find a custom made migrate tool, otherwise you're going to have to do it in stepsa) install an ODBC driver pointed at the Northwind DBb) maybe use MS SQL Express temporarily and the TSQL on the command line to dump the data and meta data (Table defs)to disk, if MS SQL...
Answer 3 Sep 2014   license: CPOL
Hi....Add MySql versions in web.config of project. Like Below: ...
Answer 3 Sep 2014   license: CPOL
The error message is quite clear:Assembly ViswasISI has a reference to v6.6.5.0 of MySql.Data;You have deployed v5.2.7.0 of MySql.Data;Deploy the correct version of MySql.Data and the error will go away. :)
Question 3 Sep 2014   license: CPOL
Hi... Please give the solution to it. It is working previously, but not now working.Error is:Server Error in '/' Application.Compilation ErrorDescription: An error occurred during the compilation of a resource required to service this request. Please review the following specific...
Answer 3 Sep 2014   license: CPOL
Check out thishttps://www.phpbb.com/[^]
Answer 2 Sep 2014   license: CPOL
What you want to do is generate a hardware key that is made up of a number of things;e.g. hard drive serial numbers, cpu processor serial number (if available), hard drive capacities, bios id, gpu id etc. etc.You could then use a weighting to determine if it is considered a 'new system' if...
Question 2 Sep 2014   license: CPOL
I really need a more complete concept of how to manage Product Registration in an online environment. Firstly I will explain what I am trying to achieve and then what I have so implemented so far. Please do not confuse this post with generating license keys, that is already taken care of.In...
Answer 20 Aug 2014   license: CPOL
Have you seen this article? Seems to serve exactly your needs:Membership and Role providers for MySQL[^]
Question 20 Aug 2014   license: CPOL
I need simple membership in mvc 4 vs 2012 with mysql (Code-First Migration and Extending Identity Accounts)Please give me example of web.config and Accountcontroller I need to develop same as default template of mvc that is for sql server not for mysql
Article 12 Aug 2014   license: CPOL
Introducing the Mo+ language and the Mo+ Solution Builder IDE that fully supports flexible and powerful model oriented development.
Answer 12 Aug 2014   license: CPOL
You can have multiple queries inside a single MySQL stored procedureDELIMITER $$CREATE PROCEDURE procedureName()BEGIN -- Query 1 -- Query 2 -- Query 3END $$DELIMITER ;
Question 12 Aug 2014   license: CPOL
please any body knows answer for this question please help me..thanks in advance...
Answer 11 Aug 2014   license: CPOL
try this....Create procedure spGetComapnyNames(IN companyname varchar(150))BEGINselect Company_Name from companynameswhere Company_Name Like companyname + '%'END
Question 10 Aug 2014   license: CPOL
hello , i need to create one forum page using HTML and PHP so plz send me the sample code please
Answer 9 Aug 2014   license: CPOL
create proc spgetcompanynames@companyna nvarchar(150)asbeginselect Company_Name from companynameswhere Company_Name Like @companyna + '%'endIn above query please change table name to Column Name(Company_Name is table name in Where clause).Write column name in which you want...
Tip/Trick 5 Aug 2014   license: CPOL
The easy way to connect to Mysql using Wamp server on WPF
Answer 3 Aug 2014   license: CPOL
You can also use Cookies to identify users. Below is the explanation with more details.E.g. I want to track how many actual users transferred to my site by clicking below link.https://tispy.net/TiSPY/index.jsp?refid=codeprojectHere landing page is index.jsp but I want to check how many...
Answer 3 Aug 2014   license: CPOL
Close!Try:create procedure spGetCompanyNames(@CompanyNams varchar(250))beginselect Company_Name from companynameswhere Company_Name Like @CompanyNams + '%'end
Question 3 Aug 2014   license: CPOL
Hello i am newbie to MYSQL Database .... i want to create stored procedure in MYSQL .. I have written the same procedure in MSSQL and it was running but when i am running it in PHPMYADMIN(MYSQL) its is giving error:1064 - You have an error in your SQL syntax; check the manual that...
Answer 26 Jul 2014   license: CPOL
SchemaName schemaForm = new SchemaName(); frmMetCon form2 = new frmMetCon(); if (schemaForm.ShowDialog() == System.Windows.Forms.DialogResult.OK) { string connStr =...
Question 24 Jul 2014   license: CPOL
Hi friend,I have some problem when implimented code in my project.Actually problem occured when i am trying to insert a lot of data in mysql.If i am added data near about 1000 then not produced any error but when i inserted data near about 5000 then give me error."ERROR [HY000]...
Answer 22 Jul 2014   license: CPOL
1-page execution timeout only applies if debug=false.Set debug="false" should solve the problem.2-You can set below value in web.config for specific page.For example, to change the timeout for one specific page:
Question 22 Jul 2014   license: CPOL
Dear sir,i have problem when implimenting project in asp.net.The problem is when i upload my project on server and start execution the page not work, some time work then later stop execution.May be this happend due to check validation large in project and many time connect with database but i...
Tip/Trick 22 Jul 2014   license: CPOL
Install Rails 4 and MySQL Server on Windows 7/8
Article 20 Jul 2014   license: CPOL
This tutorial describes how to release Session storage in a MySQL database.
Answer 18 Jul 2014   license: CPOL
Use MySql Triggers for this purpose:-for details see below...
Question 18 Jul 2014   license: CPOL
I have a SQL statement update test_1 set `t_mark` = (`mark_1` + `mark_2` + `mark_3`)which works perfectly but I want the same statement to repeat automatically when a new row is added.
Article 14 Jul 2014   license: CPOL
Did you spot any bugs today? Than this tool might save some of your time
Answer 8 Jul 2014   license: CPOL
yo encontré la solución la instalación del CrystalReport CRRuntime (64 o 32) en el cliente no de pende del sistema operativo ni del procesador sino funciona con la de 64 prueben con la de 32 o las dos así solucione mi problema. att chulocario
Answer 7 Jul 2014   license: CPOL
Try the command this way instead:C:\OpenGTS_2.5.5>bin\initdb.bat -rootUser:root -rootPass:123where you type in just this part: bin\initdb.bat -rootUser:root -rootPass:123
Tip/Trick 30 Jun 2014   license: CPOL
To set up an ASP.NET application the implements ASP Identity with Entity Framework to use MySql as a database.
Answer 25 Jun 2014   license: CPOL
i have the same probem >i searched and we need to install old connectr.net version try this http://www.4shared.com/get/f8N3QVVW/mysql-connector-net-624.htmlor this http://www.4shared.com/get/pIF-cwqo/mysql-connector-net-623.htmlif you have...

Page 1 of 115
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web04 | 2.8.140921.1 | Last Updated 21 Sep 2014
Copyright © CodeProject, 1999-2014
All Rights Reserved. Terms of Service
Layout: fixed | fluid