blah blah blah is here! blah blah » Close

1
votes
3 answers

PHP Vars, T_Constant Encapsed String

I keep getting a VARS error message. Here is the server adress: latin.allderek.com/input.html Source: [code] <?php // Declare Buttons // Connect to Allderek.com Latin Vocab Database. $link = mysql_connect('localhost', 'all ...

0
votes
1 answers

PHP - COOKIES and MySQL Help

I am trying to pass a variable back and forth between some pages. Here is the live adress: latin.allderek.com/input.html Source: [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www. ...

0
votes
1 answers

PHP Passing Variables

I have a PHP script (Starting at the form on latin.allderek.com/input.html . On the main PHP Script (latin.allderek.com/latin0.php) I have a set of error messages I dont get. What is wrong? Thanks, D Source: [code] <sty ...

0
votes
0 answers

PHP MySQL - Question

What is wrong here? http://latin.allderek.com/latin.php Source: <?php $link = mysql_connect('ftp.allderek.com:21', 'latin@allderek.com', '*****'); $status = explode(' ', mysql_stat($link)); print_r($status); ?>

0
votes
1 answers

mysql freeze

lios
30

hi! i wand to connect and read on sql server 5 cells only and to disconnect at the end of reading but i wand this reading to occurred every 3-4 sec! what is the better way to do this without my application freeze if the server is unre ...

2
votes
1 answers

Why do some people prefer postgresql versus mysql when it comes to clustering?

Rick_A
761

Does Postgresql have an easier path to clustering than mysql? It seems there is a number of people who prefer postgresql over mysql, and I have no idea why really. Is it easier to setup a master and multi-slave cluster? From what I ...

1
votes
3 answers

mysql problem

lios
30

Hello I have an mysql table that have 8 columns! I wand to read one of the column (tameio) and display the raws in a list box string MyConString = "SERVER=192.168.0.1;" + "DATABASE=mydata;" + "UID=user;&quo ...

2
votes
12 answers

Loading millions of rows of data from MySQL database into C# application

I have to load in millions of rows of data from MySQL database into a C# application. It takes more than 5 minutes for the complete set of data to be loaded. Does it make sense to do multi-threading for my case? If yes, how should I do it? ...

1
votes
1 answers

reading nulls from MySQL into nullables in C#

I'm using Connector/NET to connect to MySQL and I want to read float? and int? values from the database. I looked at the metadata and MySQLDataReader does not have any nullable equivalents to GetFloat() and GetUInt32(). I noticed a ...

1
votes
1 answers

Export database from SQL Server to MySQL

from SQL Server, pointing to specific database, then, Task, -> Export Data... it comes out with this SQL Server Import and Export Wizard: The data type could not be assigned to the column "xxxxxxx" in ".NET Framework D ...

0
votes
0 answers

is Connector/NET for MySQL thread-safe?

The Connector/NET documentation says the usual Microsoft line about public static members being thread-safe but instance members not being guaranteed as safe. Unfortunately this means nothing because the metadata in Visual Studio seems to ...

0
votes
1 answers

MySQL DateTime and C# System.DateTime

I understand that C# System.DateTime values are formatted differently from MySQL DateTime, which are: yyyy-MM-dd HH:mm:ss. in mysql prompt, I have this, which is successfully inserted those values. mysql> insert into sales (Sale_Date ...

0
votes
1 answers

Deploy C# application with MySQL

I have a C# application that update MySQL database. If I want to deploy that application to other client machines, do those client machines need to be install with MySQL also? for those client machines without MySQL install, it gives the ...

0
votes
0 answers

Cache MySQL data (from webserver) in Winforms

My Winforms read some data from MySQL database in Webserver. It is slow to display out the values. If it is a local database, it is not a problem. Even when the Winform is called, and go into the hidden mode and comes out again, that Win ...

1
votes
2 answers

MySQL Server updates field values on its Client constantly.

I could do the implementation such that the client is being updated constantly from its Server, when it reads from the MySQL database and update on the client, by using the Timer. Upon each ticks, it would read from the server database and ...

Feedback