Ycsoftware.net
Menu
  • Databases
    • MySQL
    • MS SQL Server
    • Foxpro
  • Programming
    • .NET
    • C#
    • Drupal
    • Java
    • PHP
    • Javascript
  • System Administration
    • Hardware
    • Linux
    • MAC
    • Virtual Servers
    • VMWARE
    • Servers
    • VirtualBox
  • Web Design
    • CSS
    • Flash
    • HTML
    • SEO
  • Other
  • Contact Us
    • About Us

Category : MySQL

Fatal error: Call to a member function execute() on a non-object in

  • March 27, 2012

“Fatal error: Call to a member function execute() on a non-object in” I am not going to delve too much in trying to fix this since the solution was pretty straightforward in my case. “MYSQL … Read more

    • Databases
    • MySQL

MYSQL Unixtime to US Date Format

  • March 27, 2012

MySQL Unixtime to US Date Format You can format your Unix formatted date straight from the MySQL database and here is the query that will allow you to do so: select FROM_UNIXTIME(U.signup_date, ‘%m/%d/%Y %h:%i:%s’) as … Read more

    • Databases
    • MySQL

Find the Storage Engine of a MySQL table

  • March 8, 2012

Here is how to locate the engine of your tables in MySQL: All tables SELECT table_name, engine FROM INFORMATION_SCHEMA.TABLES WHERE table_schema=DATABASE(); or One single table SHOW CREATE TABLE test; (replace test with your table name)

    • Databases
    • MySQL
    • Programming

Drop and Recreate Auto_increment Index MYSQL

  • March 8, 2012

To prevent very large auto_increment indices sometimes it is good to reset the indices, so they can start again from 1, 2,3 4 … You would want to do that if you are using one … Read more

    • Databases
    • MySQL

Number of Days Between Two UnixTime Formatted Dates MYSQL

  • January 10, 2012

Use DATEDIFF select datediff(FROM_UNIXTIME(end_time), FROM_UNIXTIME(start_time) ) from date_table

    • Databases
    • MySQL
« Older Posts
Newer Posts »

Search

Search

YCSoftware Recent Comments

THANKS!!!.. worked like a charm......
It works!...
THANKS! FIXED the problem I was having!!! :) openSUSE LEAP 15.0 m...
perfect, thanks much...
thanks a lot...
Love it bro that worked for me thank you...
Same error, but on Mac, any ideas?...
Thanks very much !!!...
Just testing...
Awesome, problem solved. Thanks man....

Tags

.net C# Centos 5 interest internet Microsoft Access Microsoft Office Programming technology thinker vmware vmware tools

Sponsors

YCSoftware
  • © 2025 Ycsoftware.net
Top