Quantcast
Channel: MySQL Forums - Connector/NET and C#, Mono, .Net
Viewing all 1447 articles
Browse latest View live

Unable to use MembershipProvider with 6.6.4 (1 reply)

$
0
0
Hello,

I am using .NetConnector 6.4.3 from last 6-7 months, its working fine, I tried the 6.6.4 today with same configuration, there are no error with database access but I am unable to logon, it shows false if validateUser method, same code working fine with 6.4.3.

Please let me know how can I fix it.

Thanks,
Laxmilal Menaria

.net (1 reply)

$
0
0
Hello friends,
please share which is famous .net with C# or VB .net ?

MySQL Connector/Net 6.6 GA has been released (no replies)

$
0
0
MySQL Connector/Net 6.6, a new version of the all-managed .NET driver
for MySQL has been released. This is the GA intended to introduce users to the new features in the release. This release is feature complete. It is recommended for use in production environments.
It is appropriate for use with MySQL server versions 5.0-5.6

It is now available in source and binary form from
http://dev.mysql.com/downloads/connector/net/#downloads and mirror sites
(note that not all mirror sites may be up to date at this point-if you
can't find this version on some mirror, please try again later or choose
another download site.)

The 6.6 version of MySQL Connector/Net brings the following new features:

* Stored routine debugging
* Entity Framework 4.3 Code First support
* Pluggable authentication (now third parties can plug new
authentications mechanisms into the driver).
* Full Visual Studio 2012 support: everything from Server Explorer to
Intellisense & the Stored Routine debugger.


The release is available to download athttp://dev.mysql.com/downloads/connector/net/6.6.html

Documentation
-------------------------------------
You can view current Connector/Net documentation
at http://dev.mysql.com/doc/refman/5.5/en/connector-net.html
For specific topics:
Stored Routine Debugger:http://dev.mysql.com/doc/refman/5.5/en/connector-net-visual-studio-debugger.html
Authentication plugin:http://dev.mysql.com/doc/refman/5.5/en/connector-net-programming-authentication-user-plugin.html

You can find our team blog at http://blogs.oracle.com/MySQLOnWindows.
You can also post questions on our forums at http://forums.mysql.com/.

Enjoy and thanks for the support!

How To: Guide to build an MVC 3 application using Entity Framework and Connector/Net (no replies)

Trace My SQL Command (no replies)

$
0
0
Hi,
I would like to Trace My Update SQL before sending it to the database, for this purpose I wrote like this. But it gives null value. How Can I achieve this. Please help me.

C# Code
private void updateBtn_Click(object sender, System.EventArgs e)
{
DataTable changes = data.GetChanges();
da.Update( changes );
MessageBox.Show(da.UpdateCommand.CommandText);
data.AcceptChanges();
}
Thanks in Advance
Thahir

Visual Studio 2012 .Net stored procedures not visible (no replies)

$
0
0
I have added the .Net connector to my Visual Studio 2012 (Pro) enviornment and am able to connect to MySQL ok and view tables. However, I am unable to see Stored Procedures and Stored Functions from within the Visual Studio Server Explorer.

I can create a Stored Procedure from within Visual Studio and have it be successfully created on MySQL, but cannot view it.

Any ideas?

Upgrading MySQL Connector/Net (no replies)

$
0
0
I am trying to publish a website with our hosting provider. I am getting an error due to the fact that they only allow a medium trust and the MySQL Connector/Net that I am using requires reflection to work. Unfortunately, reflection is not allowed in a medium trust.

After some research I found out that the newest version of the MySQL Connector/Net may solve this problem. Connector/Net 6.6 includes enhancements to partial trust support to allow hosting services to deploy applications without installing the Connector/Net library in the GAC. I am thinking that will solve my problem.

So, I unistalled MySQL Connector/Net 6.4.4 and I installed MySQL Connector/Net 6.6.4.

When I run the application in Visual Studio 2010 I get the error:
ProviderIncompatibleException was unhandled by user code

The message is:
An error occurred while getting provider information from the database. This can be caused by Entity Framework using an incorrect connection string. Check the inner exceptions for details and ensure that the connection string is correct.

InnerException is:
The provider did not return a ProviderManifestToken string.

Everything works fine when I have Connector/Net 6.4.4 installed. I can access the database and perform Read/Write/Delete action against it.

I have a reference to the following in the project:
MySql.Data
MySql.Data.Entity
MySql.Web

My connection string in Web.config:
<connectionStrings>
<add name="AESSmartEntities"
connectionString="server=ec2-xxx-xx-xxx-xx.compute-1.amazonaws.com;
user=root;
database=nunya;
port=3306;
password=xxxxxxx;"
providerName="MySql.Data.MySqlClient" />
</connectionStrings>

I have created all of my models and DbContext. I initiate an instance of the DbContext and then use LINQ/EF to access the database.

What might I be doing wrong? Do I need any additional setting(s) to work with version 6.6.4 that wasn't required in the older version 6.4.4?

Deployment problem (no replies)

$
0
0
I want to deploy (click once) an .net / entityframework application without requiring the user to install the .net connector package on the target machine first.

Searching the web tells me that this should be possible by copying the mysql.data.dll and the mysql.data.entities.dll to the /bin folder which I did. Unfortunately the application doesn't run on the target machine. However,It runs perfectly if I install the connector package prior to the install of my app.
I'm sure I forgot something simple but cant figure out what...

BTW: If I remove the entity framework part (i.e. just using a plain MySqlConnector for testing) it works without a problem.


Thanks for any help
Lutz

Application trust level exception (no replies)

$
0
0
Hi,

after I included MySql connector .net 6.5.4 into my application I started to get the following exception when deployed application to the server:


Security Exception

Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.


In my local PC the application works fine, this error occurs after deploying to server.

Can anyone tell what this error exactly means and how can I overcome this error.

Thanks.

MySQL Connector/Net 6.4.6 Maintenance Release has been released (no replies)

$
0
0
MySQL Connector/Net 6.4.6, a new version of the all-managed .NET driver
for MySQL has been released. This is a maintenance release and is recommended for use in production environments.
It is appropriate for use with MySQL server versions 5.0-5.6.
This is intended to be the final release for Connector/NET 6.4.

It is now available in source and binary form from
http://dev.mysql.com/downloads/connector/net/#downloads and mirror sites
(note that not all mirror sites may be up to date at this point-if you
can't find this version on some mirror, please try again later or choose
another download site.)

The 6.4.6 version of MySQL Connector/Net brings the following fixes:
- Fix for List.Contains generates a bunch of ORs instead of more efficient IN clause in
LINQ to Entities (Oracle bug #14016344, MySql bug #64934).
- Fix for error when trying to change the name of an Index on the Indexes/Keys editor; along with this fix now users can change the Index type of a new Index which could not be done
in previous versions, and when changing the Index name the change is reflected on the list view at the left side of the Index/Keys editor (Oracle bug #13613801).
- Fix for stored procedure call using only its name with EF code first (MySql bug #64999, Oracle bug #14008699).
- Fix for performance issue in generated EF query: .NET StartsWith/Contains/EndsWith produces MySql's locate instead of Like (MySql bug #64935, Oracle bug #14009363).
- Fix for script generated for code first contains wrong alter table and wrong declaration for byte[] (MySql bug #64216, Oracle bug #13900091).
- Fix for Exception thrown when using cascade delete in an EDM Model-First in Entity Framework (Oracle bug #14008752, MySql bug #64779).
- Fix for Session locking issue with MySqlSessionStateStore (MySql bug #63997, Oracble bug #13733054).
- Fixed deleting a user profile using Profile provider (MySQL bug #64409, Oracle bug #13790123).
- Fix for bug Cannot Create an Entity with a Key of Type String (MySQL bug #65289, Oracle bug #14540202). This fix checks if the type has a FixedLength facet set in order to create a char otherwise should create varchar, mediumtext or longtext types when using a String CLR type in Code First or Model First also tested in Database First. Unit tests added for Code First and ProviderManifest.
- Fix for bug "CacheServerProperties can cause 'Packet too large' error" (MySQL Bug #66578 Orabug #14593547).
- Fix for handling unnamed parameter in MySQLCommand. This fix allows the mysqlcommand to handle parameters without requiring naming (e.g. INSERT INTO Test (id,name) VALUES (?, ?) ) (MySQL Bug #66060, Oracle bug #14499549).
- Fixed inheritance on Entity Framework Code First scenarios. Discriminator column is created using its correct type as varchar(128) (MySql bug #63920 and Oracle bug #13582335).
- Fixed "Trying to customize column precision in Code First does not work" (MySql bug #65001, Oracle bug #14469048).
- Fixed bug ASP.NET Membership database fails on MySql database UTF32 (MySQL bug #65144, Oracle bug #14495292).
- Fix for MySqlCommand.LastInsertedId holding only 32 bit values (MySql bug #65452, Oracle bug #14171960) by changing
several internal declaration of lastinsertid from int to long.
- Fixed "Decimal type should have digits at right of decimal point", now default is 2, but user's changes in
EDM designer are recognized (MySql bug #65127, Oracle bug #14474342).
- Fix for NullReferenceException when saving an uninitialized row in Entity Framework (MySql bug #66066, Oracle bug #14479715).
- Fix for error when calling RoleProvider.RemoveUserFromRole(): causes an exception due to a wrong table being used (MySql bug #65805, Oracle bug #14405338).
- Fix for "Memory Leak on MySql.Data.MySqlClient.MySqlCommand", too many MemoryStream's instances created (MySql bug #65696, Oracle bug #14468204).
- Small improvement on MySqlPoolManager CleanIdleConnections for better mysqlpoolmanager idlecleanuptimer at startup (MySql bug #66472 and Oracle bug #14652624).
- Fix for bug TIMESTAMP values are mistakenly represented as DateTime with Kind = Local (Mysql bug #66964, Oracle bug #14740705).
- Fix for bug Keyword not supported. Parameter name: AttachDbFilename (Mysql bug #66880, Oracle bug #14733472).
- Added support to MySql script file to retrieve data when using "SHOW" statements.
- Fix for Package Load Failure in Visual Studio 2005 (MySql bug #63073, Oracle bug #13491674).
- Fix for bug "Unable to connect using IPv6 connections" (MySQL bug #67253, Oracle bug #14835718).
- Added auto-generated values for Guid identity columns (MySql bug #67450, Oracle bug #15834176).
- Fix for method FirstOrDefault not supported in some LINQ to Entities queries (MySql bug #67377, Oracle bug #15856964).

The release is available to download at http://dev.mysql.com/downloads/connector/net/6.4.html

Documentation
-------------------------------------
You can view current Connector/Net documentation
at http://dev.mysql.com/doc/refman/5.5/en/connector-net.html

You can find our team blog at http://blogs.oracle.com/MySQLOnWindows.
You can also post questions on our forums at http://forums.mysql.com/.

Enjoy and thanks for the support!

MVC not returning data (no replies)

$
0
0
Just started revisiting MVC and am going through the apress book "Pro ASP.NET MVC 2 Framework" before looking at MVC 4. I decided to try the SportStore example using MySQL instead of SQLServer and Entity Framework instead of LINQ to SQL. Everything is code first, so have entities;
[Table("Products")]
public class Product
{
public int ProductID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public decimal Price { get; set; }
public string Category { get; set; }
}
and a repository like;
public class SqlProductsRepository : IProductsRepository
{
private EFDbContext context = new EFDbContext();
public IQueryable<Entities.Product> Products
{
get { return context.Products; }
}
}
with a context like;
public class EFDbContext : DbContext
{
public DbSet<Product> Products { get; set; }
}
Using DI I can replace the SQL repository with a fake one and get data, but using the Sql repository then I get nothing.
The products table in MySQL was created independently and populated with some data. I've written a console app and used EF to generate the model and code and that retrieves the data perfectly. I'd hoped I might be able to see what the difference between the console app and the MVC app was but the code first and model generation code seem to be too disimiliar to be of use other than proving C# can be used to get data from MySQL.
I'm stumped now where to go to debug this. Any help appreciated.

Membership Provider - Updating the same row cause deadlock (2 replies)

$
0
0
I have 2 location in my web application that updating the tables: 'my_aspnet_membership', 'my_aspnet_users'.
The updates run on separate threads and cause deadlock.

The updates are part of 2 functions in "MySql Membership Provider":
1. ValidateUser()
2. GetUser()

I'm updating the same row all the time (for the same membership user).

These queries are part of "MySql Membership Provider" that cause the deadlock:

First query: (called from VerifyUser())
UPDATE my_aspnet_membership m, my_aspnet_users u SET u.lastActivityDate = '2012-11-29 18:35:46.380', m.LastActivityDate='2012-11-29 18:35:46.380' WHERE m.userId=1 AND u.id=1

Second Query: (called from GetUser())
BEGIN
UPDATE my_aspnet_users SET lastActivityDate = '2012-11-29 18:35:46.384' WHERE id=1
UPDATE my_aspnet_membership SET LastActivityDate='2012-11-29 18:35:46.384' WHERE userId=1
COMMIT

Thanks.

Need help understanding my.ini files (3 replies)

$
0
0
I am trying to understand my.ini files and how to force MySQL to look at specific directories for databases.

I've had MySql on our server for several versions. Most recent was 5.5. I just upgraded to 5.6.

I have my.ini files in the following locations:
C:\Program Files\MySQL\MySQL Server 5.6\my.ini
C:\Documents and Settings\All Users\Application Data\MySQL\MySQL Server 5.6\my.ini


C:\Program Files\MySQL\MySQL Server 5.6\my.ini points to:
#Path to installation directory. All paths are usually resolved relative to this.
basedir="C:\Program Files\MySQL\MySQL Server 5.6\"

# Path to the database root
datadir="D:\SYS\DB\MYSQL\DATABASES"


C:\Documents and Settings\All Users\Application Data\MySQL\MySQL Server 5.6\my.ini points to:

# Path to installation directory. All paths are usually resolved relative to this.
basedir="C:\Program Files\MySQL\MySQL Server 5.6\"

# Path to the database root
datadir="C:\Documents and Settings\All Users\Application Data\MySQL\MySQL Server 5.6\data\"

The database files are currently at C:\Documents and Settings\All Users\Application Data\MySQL\MySQL Server 5.6\data\, but I want them at D:\SYS\DB\MYSQL\DATABASES

So it appears that the my.ini in the application data directory is the one that "controls" everything, but when I try to change the datadir parameter to my D: drive, the service will not start. In the past I've been able to change the datadir on the my.ini in the application data directory, restart the service and it all worked. Now I can't. Can someone help me understand why I have two my.ini files and why I can't change the datadir in either?

Stored procedure from .NET: MySQLParameters without names (1 reply)

$
0
0
Hello!

Is it possible to call a stored procedure from .NET sending in parameters with no names?

Example:

Do this:
object name = "carlos";
command.Parameters.Add(name);
object pass= "1234";
command.Parameters.Add(pass);


Instead of this:
object name = "carlos";
command.Parameters.Add("username",name);
object pass= "1234";
command.Parameters.Add("password",pass);

The reason behind this, is that I don't want to specify the parameters names but to pass them in order according to the command.Parameters.Add() sentences. So 'name' would be the first param, and 'pass' the second, and so on...

Am I forced to specify names?

Thanks!

MySQL Connector/Net 6.5.5 Maintenance Release has been released (no replies)

$
0
0
MySQL Connector/Net 6.5.5, a new maintenance release of our 6.5 series, has been released. This release is GA quality and is appropriate for use in production environments. Please note that 6.6 is our latest driver series and is the recommended product for development. It is now available in source and binary form from
http://dev.mysql.com/downloads/connector/net/#downloads and mirror sites
(note that not all mirror sites may be up to date at this point-if you
can't find this version on some mirror, please try again later or choose
another download site.)

The 6.5.5 version of MySQL Connector/Net brings the following fixes:
- Fix for ArgumentNull exception when using Take().Count() in a LINQ to Entities query (bug MySql #64749, Oracle bug #13913047).
- Fix for type varchar changed to bit when saving in Table Designer (Oracle bug #13916560).
- Fix for error when trying to change the name of an Index on the Indexes/Keys editor; along with this fix now users can change the Index type of a new Index which could not be done
in previous versions, and when changing the Index name the change is reflected on the list view at the left side of the Index/Keys editor (Oracle bug #13613801).
- Fix for stored procedure call using only its name with EF code first (MySql bug #64999, Oracle bug #14008699).
- Fix for List.Contains generates a bunch of ORs instead of more efficient IN clause in
LINQ to Entities (Oracle bug #14016344, MySql bug #64934).
- Fix for performance issue in generated EF query: .NET StartsWith/Contains/EndsWith produces MySql's locate instead of Like (MySql bug #64935, Oracle bug #14009363).
- Fix for script generated for code first contains wrong alter table and wrong declaration for byte[] (MySql bug #64216, Oracle bug #13900091).
- Fix and code contribution for bug Timed out sessions are removed without notification which allow to enable the Expired CallBack when Session Provider times out any session (bug MySql #62266 Oracle bug # 13354935)
- Fix for Exception thrown when using cascade delete in an EDM Model-First in Entity Framework (Oracle bug #14008752, MySql bug #64779).
- Fix for Session locking issue with MySqlSessionStateStore (MySql bug #63997, Oracble bug #13733054).
- Fixed deleting a user profile using Profile provider (MySQL bug #64470, Oracle bug #13790123)
- Fix for bug Cannot Create an Entity with a Key of Type String (MySQL bug #65289, Oracle bug #14540202). This fix checks if the type has a FixedLength facet set in order to create a char otherwise should create varchar, mediumtext or longtext types when using a String CLR type in Code First or Model First also tested in Database First. Unit tests added for Code First and ProviderManifest.
- Fix for bug "CacheServerProperties can cause 'Packet too large' error". The issue was due to a missing reading of Max_allowed_packet server property when CacheServerProperties is in true, since the value was read only in the first connection but the following pooled connections had a wrong value causing a Packet too large error. Including also a unit test for this scenario. All unit test passed. MySQL Bug #66578 Orabug #14593547.
- Fix for handling unnamed parameter in MySQLCommand. This fix allows the mysqlcommand to handle parameters without requiring naming (e.g. INSERT INTO Test (id,name) VALUES (?, ?) ) (MySQL Bug #66060, Oracle bug #14499549).
- Fixed inheritance on Entity Framework Code First scenarios. Discriminator column is created using its correct type as varchar(128) (MySql bug #63920 and Oracle bug #13582335).
- Fixed "Trying to customize column precision in Code First does not work" (MySql bug #65001, Oracle bug #14469048).
- Fixed bug ASP.NET Membership database fails on MySql database UTF32 (MySQL bug #65144, Oracle bug #14495292).
- Fix for MySqlCommand.LastInsertedId holding only 32 bit values (MySql bug #65452, Oracle bug #14171960) by changing
several internal declaration of lastinsertid from int to long.
- Fixed "Decimal type should have digits at right of decimal point", now default is 2, but user's changes in
EDM designer are recognized (MySql bug #65127, Oracle bug #14474342).
- Fix for NullReferenceException when saving an uninitialized row in Entity Framework (MySql bug #66066, Oracle bug #14479715).
- Fix for error when calling RoleProvider.RemoveUserFromRole(): causes an exception due to a wrong table being used (MySql bug #65805, Oracle bug #14405338).
- Fix for "Memory Leak on MySql.Data.MySqlClient.MySqlCommand", too many MemoryStream's instances created (MySql bug #65696, Oracle bug #14468204).
- Added ANTLR attribution notice (Oracle bug #14379162).
- Fixed Entity Framework + mysql connector/net in partial trust throws exceptions (MySql bug #65036, Oracle bug #14668820).
- Added support in Parser for Datetime and Time types with precision when using Server 5.6 (No bug Number).
- Small improvement on MySqlPoolManager CleanIdleConnections for better mysqlpoolmanager idlecleanuptimer at startup (MySql bug #66472 and Oracle bug #14652624).
- Fix for bug TIMESTAMP values are mistakenly represented as DateTime with Kind = Local (Mysql bug #66964, Oracle bug #14740705).
- Fix for bug Keyword not supported. Parameter name: AttachDbFilename (Mysql bug #66880, Oracle bug #14733472).
- Added support to MySql script file to retrieve data when using "SHOW" statements.
- Fix for Package Load Failure in Visual Studio 2005 (MySql bug #63073, Oracle bug #13491674).
- Fix for bug "Unable to connect using IPv6 connections" (MySQL bug #67253, Oracle bug #14835718).
- Added auto-generated values for Guid identity columns (MySql bug #67450, Oracle bug #15834176).
- Fix for method FirstOrDefault not supported in some LINQ to Entities queries (MySql bug #67377, Oracle bug #15856964).

The release is available to download at
http://dev.mysql.com/downloads/connector/net/6.5.html

Documentation
-------------------------------------
You can view current Connector/Net documentation
at http://dev.mysql.com/doc/refman/5.5/en/connector-net.html

You can find our team blog at http://blogs.oracle.com/MySQLOnWindows.
You can also post questions on our forums at http://forums.mysql.com/.

Enjoy and thanks for the support!

.NET Connector 6.6.4 does not work with VS2012 Express for Web (1 reply)

$
0
0
Hi,

I've installed VS2012 Express for Web and the 6.6.4 Connector. Unfortunately the MySQL connector does not appear in the database explorer. Am I missing something ? I'm running a Windows 7 64bit with MySQL Server 5.5

Thanks

fasr insert (2 replies)

$
0
0
Hi to all.
i am insertin large number of rows into a mysql database from my .net app.
i am using a for loop for inserting the rows

cmd.Parameters.Add("@product_id", MySqlDbType.Int32);
cmd.Parameters.Add("@customer_group_id", MySqlDbType.Int32);
cmd.Parameters.Add("@price", MySqlDbType.Double);
cmd.CommandText = sql;
cmd.Connection = connection;

for (int s = 0; s < spcTbl.Count; s++)
{
cmd.Parameters["@product_id"].Value = id;
cmd.Parameters["@customer_group_id"].Value = spcTbl[s, "cuscat"];
cmd.Parameters["@price"].Value = spcTbl[s, "price"];

cmd.ExecuteNonQuery();
}


This takes me about an hour or more. Can this be faster? I read about MySqlBulkLoader but i do not have the experience to understand. An example should be ok

Thanks in advance

Hourly data sync from local MSSQL 2005 to AWS mySQL (no replies)

$
0
0
We have a local membership database on MSSQL 2005 that needs to update the AWS mySQL DB hourly. Historically we've done this with an SSIS package and a "Data Flow Task" I'd think that we could continue to do the same. There are issues though.
I've tried ADO and OLE connections, locally and directly, they all throw errors.

I've been focusing on a direct ADO connetion recently to try to get everything running and the first main error was this
Error: 0xC020844B at Export <originating table>, ADO NET Destination [465]: An exception has occurred during data insertion, the message returned from the provider is: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"<col1 name>", "<col2 name>", "<col3 name>", "<col4 name>", "<col5 name>", "<col6 name>", "<col7 name>", "<col8 name>' at line 1

I was able to resolve this by first running a basic "SQL task" and setting the sql_mode to ANSI before the data transfer
set sql_mode='ANSI'

How I am supposed to set the entire DB to ANSI, I have no idea since I need "super" access but can't seem to get that access level. This is a mySQL instance in AWS, so it seems as though there are some restrictions there.

The error is now this and I can't seem to get past it no matter what I try.
Error: 0xC020844B at Export <originating table>, ADO NET Destination [465]: An exception has occurred during data insertion, the message returned from the provider is: Unknown column 'p1' in 'field list'

Even though the membership database is a 2005 DB, I have created the SSIS package in VS2008 so that I can create the ADO source and destinations.

I understand that there is an ADO issue going to mySQL, but the ODBC connectors outright fail and cannot connect, and beyond that, an ODBC destination does not exist in SSIS packages.

How to DVD to iTunes Mac? (no replies)

$
0
0
The closest thing we have to a universal content source is iTunes, where many many movies are available for purchase or rental, and where you're probably already keeping your music anyway. But many studios have embraced Ultraviolet, which allows them to promise the same "digital copy" you would get with your DVD that would work with iTunes, but offers them a system over which they have more control

.The problem with it is simple: Ultraviolet is garbage. And as long as studios hang on to it, they'll only be killing their own physical media faster. Now more than ever, practically every data can be stored, run or played seamlessly on virtually any device. For file and device compatibility issues – which arise because of different operating systems – users can turn to Studio for answers.

It provides a wide range of multimedia software for ripping, downloading and conversion purposes. It is backed by highly experienced programmers who are focused on developing software that are more innovative and easy-to-use.

Movies will come in time. This, too, is a licensing issue. In fact, of the 56 countries getting the music store on Tuesday, Russia, India, Indonesia and Turkey are getting movies too. There are well-placed rumours circulating that we’ll see movies appearing in the SA iTunes store sometime next year.

A leading developer of powerful tools for media conversion, It makes it easier than ever to convert or import DVD to iTunes Mac OS X. Great for Entertainment on-the-go, the software makes ripping of DVDs to mobile devices or MacBook, so there is no need to lug around bulky discs.

It is the best DVD to iTunes Converter Mac Program which allows you to convert and rip DVD to iTunes compatible video formats with high quality on Mac. And rip DVDs to iPad, iPod touch 4, iPod nano, iPhone 4S, iPhone 4, Apple TV and many more device-compatible formats.

For enjoyment of DVD in just about any format, the powerful tool can convert DVD to HD video and standard videos like WMV, MP4, MOV, FLV, AVI, MPG and DV. Then you can sync the DVD disc video to iPad, iPad Mini, iPod, iPhone etc with iTunes on Mac OS.

Or you can also convert mov to dvd macfor playing on dvd player. It is the best MOV to DVD Burner for Mac which could burn MOV video files to DVD Disc on Mac OS X (Snow Leopard, Lion included) quickly and flawlessly for you.

Also a powerful DVD converter for Mac, the software rips encrypted commercial DVDs as well as homemade DVD-R, so all movies can be watched, edited in iMovie, Final Cut Pro and other applications and shared online or offline, on virtually any Apple device. The DVD Ripper for Mac is easy with optimized presets for Xbox 360, PSP, PS3, Nintento Wii, Walkman, Creative Zen, and Sandisk Sansa. In addition, the DVD Ripper for Mac is used to back up DVDs to Mac, MacBook and iCloud – wherever they will be safer

Guiding users every step of the way. Filesatoz.com comes with a video demo showing how to rip DVD to virtually any format so DVD movies can be watched n on iPad, iPhone, iPod and other Mac platforms. The video essentially focuses on three steps to DVD ripping for Mac.

To find out more about the DVD Ripper for Mac from filesatoz, please visit:filesatoz.com

Problems off connection vb.net application(client poste) and Mysql server (no replies)

$
0
0
I want to install Mysql database in a server and my vb.net application in client post and for to establish the connection I had imported the mysql.data.Mysqlclient dll and I don't use the ODBC connetor, Now I have a lot off errors Messages the last is :
Access denied for root@...
I Don't know what I can do to succeed my istallation.
thanks for your help and excuse me for my bad english
Viewing all 1447 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>