Jump to content

retrieving DateTime column from MS-SQL


phpBobby

Recommended Posts

Hi everybody:

I'm new to PHP. I'm trying to read from a MS-SQL table and Insert data into MySql. I have difficulties on the  DateTime type columns:

 

data shows on the MS-SQL is : 9/1/2006

 

my query is: $sqlquery="SELECT * FROM MyTable";

$results= mssql_query($sqlquery);

 

I iterate through records by doing:

 

while ($row=mssql_fetch_array($results))

{

$drc =$row['DateReceived'];

}

 

when I read it: $drc =$row['DateReceived'];  and try to show it on the screen (echo $drc) the output is : Sep 1 2006 12:00AM !!

 

Consequently it generates error when I try to insert it into MySql table. Even if I try to format it: date("Y-m-d H:i:s", $drc) still no success :-(

 

Does anybody know why $results return date/time data on such a different format? How can I fix this issue?

Many thanks for your help in advance.

 

phpBobby

Link to comment
Share on other sites

  • 1 month later...

try this :

 

$sqlquery="SELECT convert(varchar,DateReceived,103) FROM MyTable";

$results= mssql_query($sqlquery);

 

103 -> dd/mm/yy

101 -> mm/dd/yyyy

and so on you can find all formats in MSSQL help , search for convert

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.