Explain the difference between mysql and mysqli interfaces
in PHP?
Answer Posted / mohtashim
Mysqli is nothing but an improved version Mysql which
supports oops.
Is This Answer Correct ? | 77 Yes | 16 No |
Post New Answer View All Answers
How to copy data from one server to another using php?
Please can the SQL code below be interpreted IF @xMatchCriteria='MATCH12' BEGIN IF EXISTS (Select * from #InsightData where (EmailAddress=@xDCPEmailAddress ) ) BEGIN SET @xTestMatchCriteria = @xMatchCriteria; SELECT @xCRMCustomerId=CustomerId, @xCRMDcpCustomerId=DcpCustomerId, @xCRMPortalCustomerID=PortalCustomerID,@xCRMDcpID=DcpID, @xCRMCardNumber=CardNumber, @xCRMEmailAddress=EmailAddress, @xCRMfirtLetterFirstName=firtLetterFirstName, @xCRMLastName=Surname,@xCRMAddressLine1=AddressLine1, @xCRMPostCode=PostCode FROM #InsightData where (EmailAddress=@xDCPEmailAddress ) END ELSE BEGIN SET @xTestMatchCriteria='No'+@xMatchCriteria; END END
suppose data is copie to oracle to sql by using DTS. Actully it taken 2 hours. suppose some day distribute the server in the middle of 2 hours. after how can i get the data ?
How do you use auto increment?
What are the benefits of mysql?
Which storage engine is best in mysql?
How to use rank function in mysql?
What does a TIMESTAMP do on UPDATE CURRENT_TIMESTAMP data type?
How to see the create table statement of an existing table?
Table - Products has number of products as below Productid ProductName 1 iPhone 2 iPad 3 BlackBerry Table - SalesPersonProduct has the below records Salespersonid productid S1 1 S1 2 S1 3 S2 1 S3 2 Write a SQL query that returns the total number of sold products
How do I fix a crashed mysql database?
What is the difference between myisam dynamic and myisam static in mysql?
Do you need a license for mysql?
How can you calculate the sum of any column of a table?
What is a table schema?