I Don't know if this could help. Why not use OLE DB Connection.
Steps:
1. Create new SCR file
2. Click Ddtabase button (Data Explorer Appears)
3. Double Click More Data Source Folder
4. Double OLE DB Folder and Make New Connection
5. On Provider Tab select Microsoft OLEDB Provider for SQL...
I dont know if this could help
function CountDuplicates(strStringToSearch, strFind)
{
var intStringPos = 0;
var intStringCount = 0;
while (intStringPos != -1)
{
intStringPos = strStringToSearch.indexOf(strFind, intStringPos + 1);
intStringCount++;
}
return(intStringCount);
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.