Skip to main content

Blog

SQL Server Tips and Tricks

Inforbiro is an Information Technology and Marketing Agency with its own Internet marketing network BlicKlik. We have a lot of experience in software development as well as in Internet marketing and advertising. We constantly try not only to develop great web sites, mobile, desktop or facebook applications but also to share our knowledge.

Facebook App Privacy Policy Example

Inforbiro Information Technology Agency has great experience in Facebook application and fan pages development.

Facebook's policies require that your app has a privacy policy that tells users what user data you are going to use and how you will use, display, share, or transfer that data and you will include your privacy policy URL in the Developer Application (See Platform Policy II.3, http://developers.facebook.com/policy).

MySQL - How to Change VARCHAR Field Length

Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 255 before MySQL 5.0.3, and 0 to 65,535 in 5.0.3 and later versions. The effective maximum length of a VARCHAR in MySQL 5.0.3 and later is subject to the maximum row size (65,535 bytes, which is shared among all columns) and the character set used.

So, we could easily change field's length to be longer than 255 characters if (and only if!) MySQL we work with is version 5.0.3+:

1) Login to phpMyAdmin and go to a database

VLC Player Tips and Tricks

Inforbiro is an Information Technology and Marketing Agency with its own Internet marketing network BlicKlik. We have a lot of experience in software development as well as in Internet marketing and advertising. We constantly try not only to develop great web sites, mobile, desktop or facebook applications but also to share our knowledge.

Therefore, below is a collection of VCL Multimedia Player Tips and Tricks articles written on our company blog that could be useful to all of you.

C# - Change Default "Enter" Key Behavior In DataGridView

Default behaviour when the Enter key is pressed in DataGridView is to select the next row. Many times a customer would like to have some other behaviour, e.g. Enter to edit the current row or to open a window with detailed information.