This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE [TESTDB] | |
| GO | |
| SELECT t.name, SCHEMA_NAME(schema_id) AS schema_name FROM sys.tables AS t WHERE t.name like '%Test%' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE [TESTDB] | |
| GO | |
| DECLARE @findColumn varchar(30) = '%Test%'; | |
| SELECT t.name AS table_name, | |
| SCHEMA_NAME(schema_id) AS schema_name, | |
| c.name AS column_name | |
| FROM sys.tables AS t | |
| INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID | |
| WHERE c.name LIKE @findColumn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #PHP Code | |
| <?php | |
| $url = "http://localhost/WCF.Integration.Services/ITestService.svc?wsdl"; | |
| ini_set("soap.wsdl_cache_enabled", "1"); | |
| $client = new SoapClient($url); | |
| try | |
| { | |
| $info = $client->TestMethod(array('methodParameter' => "Test")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #PHP Code | |
| <?php | |
| $wsdl = "http://localhost/WCF.Integration.Services/ITestService.svc?wsdl"; | |
| $url=$wsdl; | |
| $svc = 'ITestService'; | |
| $func = 'TestMethod'; | |
| $client = new SoapClient($url, array('soap_version' => SOAP_1_2, | |
| 'encoding'=>'ISO-8859-1', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- HEAD SECTION --> | |
| <!-- IE Edge Meta Tag --> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <!-- Viewport --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <!-- Minified CSS --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> |